diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000000..e08de2c074
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,13 @@
+# These are supported funding model platforms
+
+github: [piskvorky] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
+patreon: # Replace with a single Patreon username
+open_collective: # Replace with a single Open Collective username
+ko_fi: # Replace with a single Ko-fi username
+tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
+community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
+liberapay: # Replace with a single Liberapay username
+issuehunt: # Replace with a single IssueHunt username
+otechie: # Replace with a single Otechie username
+custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
+
diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml
new file mode 100644
index 0000000000..5430dcdb7a
--- /dev/null
+++ b/.github/workflows/build-wheels.yml
@@ -0,0 +1,86 @@
+name: Build wheels
+
+on:
+ push:
+ branches: [ develop ]
+ pull_request:
+ branches: [ develop ]
+ schedule:
+ - cron: '0 0 * * sun,wed'
+
+jobs:
+ build:
+ runs-on: ${{ matrix.os }}
+ defaults:
+ run:
+ shell: bash
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: [3.6, 3.7, 3.8]
+ os: [ubuntu-latest, macos-latest]
+ platform: [x64]
+ include:
+ - os: ubuntu-latest
+ python-version: 3.7
+ skip-network-tests: 1
+ - os: ubuntu-latest
+ python-version: 3.8
+ skip-network-tests: 1
+ - os: macos-latest
+ travis-os-name: osx # For multibuild
+ skip-network-tests: 1
+ env:
+ PKG_NAME: gensim
+ REPO_DIR: gensim
+ BUILD_COMMIT: HEAD
+ PLAT: x86_64
+ UNICODE_WIDTH: 32
+ MB_PYTHON_VERSION: ${{ matrix.python-version }} # MB_PYTHON_VERSION is needed by Multibuild
+ TEST_DEPENDS: Morfessor==2.0.2a4 python-levenshtein==0.12.0 visdom==0.1.8.9 pytest mock cython nmslib pyemd testfixtures scikit-learn pyemd
+ DOCKER_TEST_IMAGE: multibuild/xenial_x86_64
+ TRAVIS_OS_NAME: ${{ matrix.travis-os-name }}
+ SKIP_NETWORK_TESTS: ${{ matrix.skip-network-tests }}
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: recursive
+ fetch-depth: 0
+ - name: Print environment variables
+ run: |
+ echo "PLAT: ${PLAT}"
+ echo "DOCKER_TEST_IMAGE: ${DOCKER_TEST_IMAGE}"
+ echo "TEST_DEPENDS: ${TEST_DEPENDS}"
+ echo "TRAVIS_OS_NAME: ${TRAVIS_OS_NAME}"
+ echo "SKIP_NETWORK_TESTS: ${SKIP_NETWORK_TESTS}"
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install virtualenv
+ - name: Build and Install Wheels
+ run: |
+ echo ::group::Set up Multibuild
+ source multibuild/common_utils.sh
+ source multibuild/travis_steps.sh
+ source config.sh
+ echo ::endgroup::
+ echo ::group::Before install
+ before_install
+ echo ::endgroup::
+ echo ::group::Build wheel
+ build_wheel $REPO_DIR ${{ matrix.PLAT }}
+ echo ::endgroup::
+ echo ::group::Install run
+ install_run ${{ matrix.PLAT }}
+ echo ::endgroup::
+ - name: Upload wheels to s3://gensim-wheels
+ if: always()
+ run: |
+ pip install wheelhouse-uploader
+ ls wheelhouse/*.whl
+ python -m wheelhouse_uploader upload --local-folder wheelhouse/ --no-ssl-check gensim-wheels --provider S3 --no-enable-cdn
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000000..8e3ad48871
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,60 @@
+name: Tests
+on:
+ push:
+ branches: [ develop ]
+ pull_request:
+ branches: [ develop ]
+
+jobs:
+ tests:
+ name: ${{ matrix.name }}
+ runs-on: ${{ matrix.os }}
+ defaults:
+ run:
+ shell: bash
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - {name: Linux, python: 3.6, os: ubuntu-20.04, tox: 'flake8,flake8-docs'}
+ - {name: Linux, python: 3.6, os: ubuntu-20.04, tox: 'py36-linux'}
+ - {name: Linux, python: 3.7, os: ubuntu-20.04, tox: 'py37-linux'}
+ - {name: Linux, python: 3.8, os: ubuntu-20.04, tox: 'py38-linux'}
+ env:
+ TOX_PARALLEL_NO_SPINNER: 1
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Setup up Python ${{ matrix.python }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python }}
+ - name: Update pip
+ run: python -m pip install -U pip
+
+ #
+ # Work-around mysterious build problem
+ # https://github.com/RaRe-Technologies/gensim/pull/3078/checks?check_run_id=2117914443
+ # https://www.scala-sbt.org/1.x/docs/Installing-sbt-on-Linux.html
+ #
+ - name: Update sbt
+ run: |
+ echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
+ curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add
+ sudo apt-get update -y
+ sudo apt-get install -y sbt
+ - name: Install tox, gdb
+ run: |
+ pip install tox
+ sudo apt-get update -y
+ sudo apt-get install -y gdb
+ - name: Enable core dumps
+ run: ulimit -c unlimited -S # enable core dumps
+ - name: Run tox tests
+ run: tox -e ${{ matrix.tox }}
+ - name: Collect corefile
+ if: ${{ failure() }}
+ run: |
+ pwd
+ COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1)
+ if [[ -f "$COREFILE" ]]; then EXECFILE=$(gdb -c "$COREFILE" -batch | grep "Core was generated" | tr -d "\`" | cut -d' ' -f5); file "$COREFILE"; gdb -c "$COREFILE" "$EXECFILE" -x continuous_integration/debug.gdb -batch; fi
diff --git a/.gitignore b/.gitignore
index c3ba120f37..019e1812f7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -76,3 +76,18 @@ data
*.inv
*.js
docs/_images/
+
+#
+# Generated by Cython
+#
+gensim/_matutils.c
+gensim/corpora/_mmreader.c
+gensim/models/doc2vec_corpusfile.cpp
+gensim/models/doc2vec_inner.cpp
+gensim/models/fasttext_corpusfile.cpp
+gensim/models/fasttext_inner.c
+gensim/models/nmf_pgd.c
+gensim/models/word2vec_corpusfile.cpp
+gensim/models/word2vec_inner.c
+
+.ipynb_checkpoints
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000000..347fe93043
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "multibuild"]
+ path = multibuild
+ url = https://github.com/matthew-brett/multibuild.git
diff --git a/.travis.yml b/.travis.yml
index 553a8215d8..b887cac1b6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,53 +1,52 @@
-sudo: false
-
-cache:
- apt: true
- directories:
- - $HOME/.cache/pip
- - $HOME/.ccache
- - $HOME/.pip-cache
-dist: trusty
+branches:
+ only:
+ - /v\d+\.\d+\.\d+/
language: python
+arch: arm64-graviton2
+dist: focal
+virt: vm
+group: edge
+services: docker
env:
- TOX_PARALLEL_NO_SPINNER: 1
-
+ global:
+ - REPO_DIR=gensim
+ - BUILD_COMMIT=HEAD
+ - UNICODE_WIDTH=32
+ - PLAT=aarch64
+ - MB_ML_VER=2014
+ - SKIP_NETWORK_TESTS=1
+ - DOCKER_TEST_IMAGE=multibuild/xenial_arm64v8
+ - BUILD_DEPENDS="numpy==1.19.2 scipy==1.5.3"
+ - TEST_DEPENDS="pytest mock cython nmslib pyemd testfixtures Morfessor==2.0.2a4 python-levenshtein==0.12.0 visdom==0.1.8.9 scikit-learn"
matrix:
- include:
- - python: '3.6'
- env: TOXENV="flake8,flake8-docs"
-
- - python: '3.8'
+ - os: linux
env:
- - TOXENV="py38-linux"
- dist: bionic
-
- - python: '3.7'
+ - MB_PYTHON_VERSION=3.6
+ - os: linux
env:
- - TOXENV="py37-linux"
- # The following two lines used to be necessary because Travis left files lying around in ~/.aws/,
- # messing up our tests. Now fixed since https://github.com/travis-ci/travis-ci/issues/7940
- # - BOTO_CONFIG="/dev/null"
- #sudo: true
- dist: xenial
-
- - python: '3.6'
- env: TOXENV="py36-linux"
-
-
+ - MB_PYTHON_VERSION=3.7
+ - os: linux
+ env:
+ - MB_PYTHON_VERSION=3.8
+ - os: linux
+ env:
+ - MB_PYTHON_VERSION=3.9
+before_install:
+ - source multibuild/common_utils.sh
+ - source multibuild/travis_steps.sh
+ - before_install
install:
- - pip install tox
- - sudo apt-get install -y gdb
-
-
-before_script:
- - ulimit -c unlimited -S # enable core dumps
-
-
-script: tox -vv
-
-
-after_failure:
- - pwd
- - COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1)
- - if [[ -f "$COREFILE" ]]; then EXECFILE=$(gdb -c "$COREFILE" -batch | grep "Core was generated" | tr -d "\`" | cut -d' ' -f5); file "$COREFILE"; gdb -c "$COREFILE" "$EXECFILE" -x continuous_integration/debug.gdb -batch; fi
+ - build_wheel $REPO_DIR $PLAT
+script:
+ - install_run $PLAT
+after_script:
+ - ls -laht ${TRAVIS_BUILD_DIR}/wheelhouse/
+ - pip install wheelhouse-uploader
+ - python -m wheelhouse_uploader upload --local-folder ${TRAVIS_BUILD_DIR}/wheelhouse/ --no-ssl-check gensim-wheels --provider S3 --no-enable-cdn
+
+notifications:
+ email:
+ - penkov+gensimwheels@pm.me
+ on_success: always
+ on_failure: always
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7108bd1516..d64c1076e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,87 @@
Changes
=======
+## 4.0.0.rc1, 2021-03-19
+
+**⚠️ Gensim 4.0 contains breaking API changes! See the [Migration guide](https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4) to update your existing Gensim 3.x code and models.**
+
+Gensim 4.0 is a major release with lots of performance & robustness improvements and a new website.
+
+### Main highlights (see also *👍 Improvements* below)
+
+* Massively optimized popular algorithms the community has grown to love: [fastText](https://radimrehurek.com/gensim/models/fasttext.html), [word2vec](https://radimrehurek.com/gensim/models/word2vec.html), [doc2vec](https://radimrehurek.com/gensim/models/doc2vec.html), [phrases](https://radimrehurek.com/gensim/models/phrases.html):
+
+ a. **Efficiency**
+
+ | model | 3.8.3: wall time / peak RAM / throughput | 4.0.0: wall time / peak RAM / throughput |
+ |----------|------------|--------|
+ | fastText | 2.9h / 4.11 GB / 822k words/s | 2.3h / **1.26 GB** / 914k words/s |
+ | word2vec | 1.7h / 0.36 GB / 1685k words/s | **1.2h** / 0.33 GB / 1762k words/s |
+
+ In other words, fastText now needs 3x less RAM (and is faster); word2vec has 2x faster init (and needs less RAM, and is faster); detecting collocation phrases is 2x faster. ([4.0 benchmarks](https://github.com/RaRe-Technologies/gensim/issues/2887#issuecomment-711097334))
+
+ b. **Robustness**. We fixed a bunch of long-standing bugs by refactoring the internal code structure (see 🔴 Bug fixes below)
+
+ c. **Simplified OOP model** for easier model exports and integration with TensorFlow, PyTorch &co.
+
+ These improvements come to you transparently aka "for free", but see [Migration guide](https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4) for some changes that break the old Gensim 3.x API. **Update your code accordingly**.
+
+* Dropped a bunch of externally contributed modules: summarization, pivoted TFIDF normalization, FIXME.
+ - Code quality was not up to our standards. Also there was no one to maintain them, answer user questions, support these modules.
+
+ So rather than let them rot, we took the hard decision of removing these contributed modules from Gensim. If anyone's interested in maintaining them please fork into your own repo, they can live happily outside of Gensim.
+
+* Dropped Python 2. Gensim 4.0 is Py3.6+. Read our [Python version support policy](https://github.com/RaRe-Technologies/gensim/wiki/Gensim-And-Compatibility).
+ - If you still need Python 2 for some reason, stay at [Gensim 3.8.3](https://github.com/RaRe-Technologies/gensim/releases/tag/3.8.3).
+
+* A new [Gensim website](https://radimrehurek.com/gensim_4.0.0) – finally! 🙃
+
+So, a major clean-up release overall. We're happy with this **tighter, leaner and faster Gensim**.
+
+This is the direction we'll keep going forward: less kitchen-sink of "latest academic algorithms", more focus on robust engineering, targetting common concrete NLP & document similarity use-cases.
+
+### :star2: New Features
+
+* Default to pickle protocol 4 when saving models (__[piskvorky](https://github.com/piskvorky)__, [#3065](https://github.com/RaRe-Technologies/gensim/pull/3065))
+* Record lifecycle events in Gensim models (__[piskvorky](https://github.com/piskvorky)__, [#3060](https://github.com/RaRe-Technologies/gensim/pull/3060))
+* Make WMD normalization optional (__[piskvorky](https://github.com/piskvorky)__, [#3073](https://github.com/RaRe-Technologies/gensim/pull/3073))
+
+### :red_circle: Bug fixes
+
+* fix RuntimeError in export_phrases (change defaultdict to dict) (__[thalishsajeed](https://github.com/thalishsajeed)__, [#3041](https://github.com/RaRe-Technologies/gensim/pull/3041))
+
+### :books: Tutorial and doc improvements
+
+* fix various documentation warnings (__[mpenkov](https://github.com/mpenkov)__, [#3077](https://github.com/RaRe-Technologies/gensim/pull/3077))
+* Fix broken link in run_doc how-to (__[sezanzeb](https://github.com/sezanzeb)__, [#2991](https://github.com/RaRe-Technologies/gensim/pull/2991))
+* Point WordEmbeddingSimilarityIndex documentation to gensim.similarities (__[Witiko](https://github.com/Witiko)__, [#3003](https://github.com/RaRe-Technologies/gensim/pull/3003))
+* Make the link to the Gensim 3.8.3 documentation dynamic (__[Witiko](https://github.com/Witiko)__, [#2996](https://github.com/RaRe-Technologies/gensim/pull/2996))
+
+### :+1: Improvements
+
+### :warning: Removed functionality
+
+* remove on_batch_begin and on_batch_end callbacks (__[mpenkov](https://github.com/mpenkov)__, [#3078](https://github.com/RaRe-Technologies/gensim/pull/3078))
+* remove pattern dependency (__[mpenkov](https://github.com/mpenkov)__, [#3012](https://github.com/RaRe-Technologies/gensim/pull/3012))
+* rm gensim.viz submodule (__[mpenkov](https://github.com/mpenkov)__, [#3055](https://github.com/RaRe-Technologies/gensim/pull/3055))
+
+### :warning: Deprecations (will be removed in the next major release)
+
+### ??? Misc
+
+**FIXME** This is a list of PRs that I couldn't find an appropriate section for.
+We could make some other section for them or remove them from the changelog entirely.
+This is probably OK as-is for the release candidate, but we should clean this up for the proper, final release.
+
+* [MRG] Add Github sponsor + donation nags (__[piskvorky](https://github.com/piskvorky)__, [#3069](https://github.com/RaRe-Technologies/gensim/pull/3069))
+* Update URLs (__[jonaschn](https://github.com/jonaschn)__, [#3063](https://github.com/RaRe-Technologies/gensim/pull/3063))
+* Fix race condition in FastText tests (__[sleepy-owl](https://github.com/sleepy-owl)__, [#3059](https://github.com/RaRe-Technologies/gensim/pull/3059))
+* Add py39 wheels to travis/azure (__[FredHappyface](https://github.com/FredHappyface)__, [#3058](https://github.com/RaRe-Technologies/gensim/pull/3058))
+* Update repos before trying to install gdb (__[janaknat](https://github.com/janaknat)__, [#3035](https://github.com/RaRe-Technologies/gensim/pull/3035))
+* transformed camelCase to snake_case test names (__[sezanzeb](https://github.com/sezanzeb)__, [#3033](https://github.com/RaRe-Technologies/gensim/pull/3033))
+* move x86 tests from Travis to GHA, add aarch64 wheel build to Travis (__[janaknat](https://github.com/janaknat)__, [#3026](https://github.com/RaRe-Technologies/gensim/pull/3026))
+* Add Github Actions x86 and mac jobs to build python wheels (__[janaknat](https://github.com/janaknat)__, [#3024](https://github.com/RaRe-Technologies/gensim/pull/3024))
+
## 4.0.0beta, 2020-10-31
**⚠️ Gensim 4.0 contains breaking API changes! See the [Migration guide](https://github.com/RaRe-Technologies/gensim/wiki/Migrating-from-Gensim-3.x-to-4) to update your existing Gensim 3.x code and models.**
@@ -104,6 +185,7 @@ Production stability is important to Gensim, so we're improving the process of *
* [#2926](https://github.com/RaRe-Technologies/gensim/pull/2926): Rename `num_words` to `topn` in dtm_coherence, by [@MeganStodel](https://github.com/MeganStodel)
* [#2937](https://github.com/RaRe-Technologies/gensim/pull/2937): Remove Keras dependency, by [@piskvorky](https://github.com/piskvorky)
* Removed all code, methods, attributes and functions marked as deprecated in [Gensim 3.8.3](https://github.com/RaRe-Technologies/gensim/releases/tag/3.8.3).
+* Removed pattern dependency (PR [#3012](https://github.com/RaRe-Technologies/gensim/pull/3012), [@mpenkov](https://github.com/mpenkov)). If you need to lemmatize, do it prior to passing the corpus to gensim.
---
diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md
index ec31c5964f..95121b30ae 100644
--- a/ISSUE_TEMPLATE.md
+++ b/ISSUE_TEMPLATE.md
@@ -15,6 +15,12 @@ What are you trying to achieve? What is the expected result? What are you seeing
Include full tracebacks, logs and datasets if necessary. Please keep the examples minimal ("minimal reproducible example").
+If your problem is with a specific Gensim model (word2vec, lsimodel, doc2vec, fasttext, ldamodel etc), include the following:
+
+```python
+print(my_model.lifecycle_events)
+```
+
#### Versions
Please provide the output of:
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index c624e7e3e9..8e8102fa12 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -12,6 +12,9 @@ strategy:
py38:
python.version: '3.8'
TOXENV: "py38-win"
+ py39:
+ python.version: '3.9'
+ TOXENV: "py39-win"
steps:
- task: UsePythonVersion@0
@@ -25,5 +28,5 @@ steps:
displayName: 'Install tox'
- script: |
- tox -vv
+ tox
displayName: 'Testing'
diff --git a/config.sh b/config.sh
new file mode 100755
index 0000000000..8a2be6e0dd
--- /dev/null
+++ b/config.sh
@@ -0,0 +1,27 @@
+# Define custom utilities
+
+function pre_build {
+ # Any stuff that you need to do before you start building the wheels
+ # Runs in the root directory of this repository.
+ :
+}
+
+function build_wheel_cmd {
+ local cmd=${1:-pip_wheel_cmd}
+ local wheelhouse=$(abspath ${WHEEL_SDIR:-wheelhouse})
+ start_spinner
+ if [ -n "$(is_function "pre_build")" ]; then pre_build; fi
+ stop_spinner
+ if [ -n "$BUILD_DEPENDS" ]; then
+ pip install $(pip_opts) $BUILD_DEPENDS
+ fi
+ $cmd $wheelhouse
+ repair_wheelhouse $wheelhouse
+}
+
+function run_tests {
+ # Runs tests on installed distribution from an empty directory
+ python --version
+ pip freeze
+ pytest -rfxEXs --durations=20 --disable-warnings --showlocals --pyargs gensim
+}
diff --git a/docs/notebooks/nmf_tutorial.ipynb b/docs/notebooks/nmf_tutorial.ipynb
index a1fa18c00a..d7eb67b7eb 100644
--- a/docs/notebooks/nmf_tutorial.ipynb
+++ b/docs/notebooks/nmf_tutorial.ipynb
@@ -139,7 +139,7 @@
"import gensim.downloader\n",
"from gensim import matutils, utils\n",
"from gensim.corpora import Dictionary\n",
- "from gensim.models import CoherenceModel, LdaModel, TfidfModel\n",
+ "from gensim.models import CoherenceModel, LdaModel, TfidfModel, LsiModel\n",
"from gensim.models.basemodel import BaseTopicModel\n",
"from gensim.models.nmf import Nmf as GensimNmf\n",
"from gensim.parsing.preprocessing import preprocess_string\n",
@@ -191,16 +191,7 @@
"cell_type": "code",
"execution_count": 3,
"metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:24:02,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 00:24:03,509 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"random_state = RandomState(42)\n",
"\n",
@@ -265,11 +256,11 @@
"name": "stderr",
"output_type": "stream",
"text": [
- "2019-06-17 00:24:12,357 : INFO : adding document #0 to Dictionary(0 unique tokens: [])\n",
- "2019-06-17 00:24:12,761 : INFO : built Dictionary(25279 unique tokens: ['actual', 'assum', 'babbl', 'batka', 'batkaj']...) from 2819 documents (total 435328 corpus positions)\n",
- "2019-06-17 00:24:12,803 : INFO : discarding 18198 tokens: [('batka', 1), ('batkaj', 1), ('beatl', 1), ('ccmail', 3), ('dayton', 4), ('edu', 1785), ('inhibit', 1), ('jbatka', 1), ('line', 2748), ('organ', 2602)]...\n",
- "2019-06-17 00:24:12,804 : INFO : keeping 7081 tokens which were in no less than 5 and no more than 1409 (=50.0%) documents\n",
- "2019-06-17 00:24:12,815 : INFO : resulting dictionary: Dictionary(7081 unique tokens: ['actual', 'assum', 'babbl', 'burster', 'caus']...)\n"
+ "2019-05-06 15:57:16,471 : INFO : adding document #0 to Dictionary(0 unique tokens: [])\n",
+ "2019-05-06 15:57:16,781 : INFO : built Dictionary(25279 unique tokens: ['sketch', 'addario', 'foyer', 'labratsat', 'reclaim']...) from 2819 documents (total 435328 corpus positions)\n",
+ "2019-05-06 15:57:16,809 : INFO : discarding 18198 tokens: [('batka', 1), ('batkaj', 1), ('beatl', 1), ('ccmail', 3), ('dayton', 4), ('edu', 1785), ('inhibit', 1), ('jbatka', 1), ('line', 2748), ('organ', 2602)]...\n",
+ "2019-05-06 15:57:16,810 : INFO : keeping 7081 tokens which were in no less than 5 and no more than 1409 (=50.0%) documents\n",
+ "2019-05-06 15:57:16,821 : INFO : resulting dictionary: Dictionary(7081 unique tokens: ['colost', 'choke', 'editor', 'china', 'piss']...)\n"
]
}
],
@@ -379,75 +370,75 @@
"name": "stderr",
"output_type": "stream",
"text": [
- "2019-06-17 00:24:15,115 : INFO : running NMF training, 5 topics, 5 passes over the supplied corpus of 2819 documents, evaluating l2 norm every 2819 documents\n",
- "2019-06-17 00:24:15,136 : INFO : PROGRESS: pass 0, at document #1000/2819\n",
- "2019-06-17 00:24:15,162 : INFO : W error diff: -inf\n",
- "2019-06-17 00:24:15,182 : INFO : PROGRESS: pass 0, at document #2000/2819\n",
- "2019-06-17 00:24:15,202 : INFO : W error diff: -2.1783593508632997\n",
- "2019-06-17 00:24:15,221 : INFO : PROGRESS: pass 0, at document #2819/2819\n",
- "2019-06-17 00:24:15,606 : INFO : L2 norm: 28.137070033533682\n",
- "2019-06-17 00:24:15,658 : INFO : topic #0 (0.404): 0.011*\"isra\" + 0.010*\"israel\" + 0.007*\"arab\" + 0.006*\"jew\" + 0.005*\"palestinian\" + 0.004*\"henri\" + 0.003*\"toronto\" + 0.003*\"question\" + 0.003*\"kill\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:15,660 : INFO : topic #1 (0.358): 0.009*\"space\" + 0.005*\"access\" + 0.005*\"nasa\" + 0.004*\"pat\" + 0.003*\"digex\" + 0.003*\"orbit\" + 0.003*\"shuttl\" + 0.003*\"graphic\" + 0.003*\"data\" + 0.003*\"com\"\n",
- "2019-06-17 00:24:15,661 : INFO : topic #2 (0.388): 0.013*\"armenian\" + 0.006*\"turkish\" + 0.005*\"greek\" + 0.005*\"peopl\" + 0.004*\"armenia\" + 0.004*\"turk\" + 0.004*\"argic\" + 0.004*\"bike\" + 0.003*\"serdar\" + 0.003*\"turkei\"\n",
- "2019-06-17 00:24:15,663 : INFO : topic #3 (0.423): 0.010*\"moral\" + 0.006*\"keith\" + 0.004*\"anim\" + 0.004*\"jake\" + 0.003*\"boni\" + 0.003*\"act\" + 0.003*\"instinct\" + 0.003*\"think\" + 0.003*\"caltech\" + 0.003*\"object\"\n",
- "2019-06-17 00:24:15,665 : INFO : topic #4 (0.441): 0.009*\"islam\" + 0.009*\"god\" + 0.006*\"muslim\" + 0.006*\"livesei\" + 0.005*\"imag\" + 0.005*\"sgi\" + 0.005*\"jaeger\" + 0.004*\"jon\" + 0.004*\"solntz\" + 0.004*\"wpd\"\n",
- "2019-06-17 00:24:15,679 : INFO : W error diff: -0.6087333117616911\n",
- "2019-06-17 00:24:15,718 : INFO : PROGRESS: pass 1, at document #1000/2819\n",
- "2019-06-17 00:24:15,735 : INFO : W error diff: -1.5858439279007879\n",
- "2019-06-17 00:24:15,762 : INFO : PROGRESS: pass 1, at document #2000/2819\n",
- "2019-06-17 00:24:15,773 : INFO : W error diff: -1.1329837530094071\n",
- "2019-06-17 00:24:15,791 : INFO : PROGRESS: pass 1, at document #2819/2819\n",
- "2019-06-17 00:24:16,056 : INFO : L2 norm: 28.02006726219276\n",
- "2019-06-17 00:24:16,108 : INFO : topic #0 (0.345): 0.014*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"polici\" + 0.003*\"attack\" + 0.003*\"henri\"\n",
- "2019-06-17 00:24:16,109 : INFO : topic #1 (0.253): 0.008*\"space\" + 0.005*\"nasa\" + 0.004*\"access\" + 0.003*\"orbit\" + 0.003*\"pat\" + 0.003*\"digex\" + 0.003*\"launch\" + 0.003*\"shuttl\" + 0.003*\"graphic\" + 0.003*\"com\"\n",
- "2019-06-17 00:24:16,110 : INFO : topic #2 (0.299): 0.020*\"armenian\" + 0.010*\"turkish\" + 0.007*\"armenia\" + 0.006*\"turk\" + 0.006*\"argic\" + 0.006*\"serdar\" + 0.005*\"greek\" + 0.005*\"turkei\" + 0.004*\"genocid\" + 0.004*\"peopl\"\n",
- "2019-06-17 00:24:16,112 : INFO : topic #3 (0.353): 0.013*\"moral\" + 0.011*\"keith\" + 0.006*\"object\" + 0.005*\"caltech\" + 0.005*\"schneider\" + 0.004*\"anim\" + 0.004*\"allan\" + 0.004*\"cco\" + 0.004*\"jake\" + 0.004*\"boni\"\n",
- "2019-06-17 00:24:16,113 : INFO : topic #4 (0.380): 0.011*\"islam\" + 0.011*\"god\" + 0.006*\"livesei\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.005*\"muslim\" + 0.005*\"jon\" + 0.005*\"religion\" + 0.004*\"imag\" + 0.004*\"solntz\"\n",
- "2019-06-17 00:24:16,124 : INFO : W error diff: -0.05304441334403265\n",
- "2019-06-17 00:24:16,155 : INFO : PROGRESS: pass 2, at document #1000/2819\n",
- "2019-06-17 00:24:16,170 : INFO : W error diff: -0.6532464912217009\n",
- "2019-06-17 00:24:16,204 : INFO : PROGRESS: pass 2, at document #2000/2819\n",
- "2019-06-17 00:24:16,212 : INFO : W error diff: -0.5542774416923812\n",
- "2019-06-17 00:24:16,228 : INFO : PROGRESS: pass 2, at document #2819/2819\n",
- "2019-06-17 00:24:16,546 : INFO : L2 norm: 27.999892226543682\n",
- "2019-06-17 00:24:16,604 : INFO : topic #0 (0.343): 0.014*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"polici\" + 0.003*\"lebanon\"\n",
- "2019-06-17 00:24:16,605 : INFO : topic #1 (0.229): 0.007*\"space\" + 0.005*\"nasa\" + 0.004*\"access\" + 0.003*\"orbit\" + 0.003*\"pat\" + 0.003*\"launch\" + 0.003*\"digex\" + 0.003*\"gov\" + 0.003*\"graphic\" + 0.003*\"com\"\n",
- "2019-06-17 00:24:16,607 : INFO : topic #2 (0.283): 0.022*\"armenian\" + 0.011*\"turkish\" + 0.007*\"armenia\" + 0.007*\"turk\" + 0.007*\"argic\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.004*\"soviet\"\n",
- "2019-06-17 00:24:16,609 : INFO : topic #3 (0.347): 0.015*\"moral\" + 0.013*\"keith\" + 0.007*\"object\" + 0.006*\"caltech\" + 0.005*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"jake\" + 0.004*\"natur\"\n",
- "2019-06-17 00:24:16,610 : INFO : topic #4 (0.365): 0.011*\"god\" + 0.011*\"islam\" + 0.006*\"livesei\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.005*\"muslim\" + 0.005*\"religion\" + 0.005*\"jon\" + 0.005*\"atheist\" + 0.004*\"atheism\"\n",
- "2019-06-17 00:24:16,618 : INFO : W error diff: 0.06399021760879364\n",
- "2019-06-17 00:24:16,659 : INFO : PROGRESS: pass 3, at document #1000/2819\n",
- "2019-06-17 00:24:16,676 : INFO : W error diff: -0.3678424933365889\n",
- "2019-06-17 00:24:16,697 : INFO : PROGRESS: pass 3, at document #2000/2819\n",
- "2019-06-17 00:24:16,705 : INFO : W error diff: -0.34924666183303543\n",
- "2019-06-17 00:24:16,722 : INFO : PROGRESS: pass 3, at document #2819/2819\n",
- "2019-06-17 00:24:17,141 : INFO : L2 norm: 27.991268049236886\n",
- "2019-06-17 00:24:17,190 : INFO : topic #0 (0.350): 0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:17,192 : INFO : topic #1 (0.220): 0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"pat\" + 0.003*\"gov\" + 0.003*\"com\" + 0.003*\"digex\" + 0.002*\"alaska\"\n",
- "2019-06-17 00:24:17,194 : INFO : topic #2 (0.282): 0.023*\"armenian\" + 0.011*\"turkish\" + 0.007*\"armenia\" + 0.007*\"turk\" + 0.007*\"argic\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"\n",
- "2019-06-17 00:24:17,196 : INFO : topic #3 (0.351): 0.016*\"moral\" + 0.015*\"keith\" + 0.007*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:17,197 : INFO : topic #4 (0.364): 0.012*\"god\" + 0.011*\"islam\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.006*\"livesei\" + 0.005*\"muslim\" + 0.005*\"religion\" + 0.005*\"atheist\" + 0.005*\"atheism\" + 0.004*\"jon\"\n",
- "2019-06-17 00:24:17,204 : INFO : W error diff: 0.08877110840856872\n",
- "2019-06-17 00:24:17,242 : INFO : PROGRESS: pass 4, at document #1000/2819\n",
- "2019-06-17 00:24:17,257 : INFO : W error diff: -0.2446709705343757\n",
- "2019-06-17 00:24:17,282 : INFO : PROGRESS: pass 4, at document #2000/2819\n",
- "2019-06-17 00:24:17,290 : INFO : W error diff: -0.24931839405260803\n",
- "2019-06-17 00:24:17,307 : INFO : PROGRESS: pass 4, at document #2819/2819\n",
- "2019-06-17 00:24:17,642 : INFO : L2 norm: 27.98648818098989\n",
- "2019-06-17 00:24:17,700 : INFO : topic #0 (0.354): 0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.004*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:17,702 : INFO : topic #1 (0.209): 0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"gov\" + 0.003*\"pat\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"moon\"\n",
- "2019-06-17 00:24:17,704 : INFO : topic #2 (0.283): 0.023*\"armenian\" + 0.011*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"\n",
- "2019-06-17 00:24:17,705 : INFO : topic #3 (0.356): 0.017*\"moral\" + 0.016*\"keith\" + 0.007*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.006*\"allan\" + 0.006*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"\n",
- "2019-06-17 00:24:17,707 : INFO : topic #4 (0.366): 0.012*\"god\" + 0.011*\"islam\" + 0.006*\"jaeger\" + 0.005*\"sgi\" + 0.005*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"rushdi\"\n",
- "2019-06-17 00:24:17,714 : INFO : W error diff: 0.0932956490045207\n"
+ "2019-05-06 15:57:18,565 : INFO : running NMF training, 5 topics, 5 passes over the supplied corpus of 2819 documents, evaluating l2 norm every 2819 documents\n",
+ "2019-05-06 15:57:18,581 : INFO : PROGRESS: pass 0, at document #1000/2819\n",
+ "2019-05-06 15:57:18,604 : INFO : W error: -11.552583824232896\n",
+ "2019-05-06 15:57:18,619 : INFO : PROGRESS: pass 0, at document #2000/2819\n",
+ "2019-05-06 15:57:18,627 : INFO : W error: -13.74803744073488\n",
+ "2019-05-06 15:57:18,639 : INFO : PROGRESS: pass 0, at document #2819/2819\n",
+ "2019-05-06 15:57:18,735 : INFO : L2 norm: 28.141396382337142\n",
+ "2019-05-06 15:57:18,770 : INFO : topic #0 (0.395): 0.011*\"isra\" + 0.010*\"israel\" + 0.006*\"arab\" + 0.006*\"jew\" + 0.004*\"palestinian\" + 0.004*\"henri\" + 0.003*\"toronto\" + 0.003*\"question\" + 0.003*\"kill\" + 0.003*\"hernlem\"\n",
+ "2019-05-06 15:57:18,771 : INFO : topic #1 (0.352): 0.008*\"space\" + 0.005*\"access\" + 0.005*\"nasa\" + 0.004*\"pat\" + 0.003*\"digex\" + 0.003*\"orbit\" + 0.003*\"shuttl\" + 0.003*\"data\" + 0.003*\"graphic\" + 0.003*\"com\"\n",
+ "2019-05-06 15:57:18,772 : INFO : topic #2 (0.378): 0.012*\"armenian\" + 0.006*\"turkish\" + 0.004*\"greek\" + 0.004*\"peopl\" + 0.004*\"armenia\" + 0.004*\"turk\" + 0.004*\"argic\" + 0.004*\"bike\" + 0.003*\"serdar\" + 0.003*\"turkei\"\n",
+ "2019-05-06 15:57:18,772 : INFO : topic #3 (0.412): 0.010*\"moral\" + 0.006*\"keith\" + 0.004*\"anim\" + 0.003*\"jake\" + 0.003*\"boni\" + 0.003*\"instinct\" + 0.003*\"act\" + 0.003*\"think\" + 0.003*\"object\" + 0.003*\"caltech\"\n",
+ "2019-05-06 15:57:18,773 : INFO : topic #4 (0.428): 0.009*\"islam\" + 0.008*\"god\" + 0.006*\"livesei\" + 0.006*\"muslim\" + 0.005*\"imag\" + 0.005*\"sgi\" + 0.005*\"jaeger\" + 0.004*\"jon\" + 0.004*\"solntz\" + 0.004*\"wpd\"\n",
+ "2019-05-06 15:57:18,776 : INFO : W error: -14.346700852834074\n",
+ "2019-05-06 15:57:18,791 : INFO : PROGRESS: pass 1, at document #1000/2819\n",
+ "2019-05-06 15:57:18,797 : INFO : W error: -15.92349117004869\n",
+ "2019-05-06 15:57:18,811 : INFO : PROGRESS: pass 1, at document #2000/2819\n",
+ "2019-05-06 15:57:18,816 : INFO : W error: -17.04437515427273\n",
+ "2019-05-06 15:57:18,829 : INFO : PROGRESS: pass 1, at document #2819/2819\n",
+ "2019-05-06 15:57:18,922 : INFO : L2 norm: 28.021861174968205\n",
+ "2019-05-06 15:57:18,956 : INFO : topic #0 (0.341): 0.014*\"israel\" + 0.013*\"isra\" + 0.008*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.003*\"peac\" + 0.003*\"henri\" + 0.003*\"attack\" + 0.003*\"polici\"\n",
+ "2019-05-06 15:57:18,956 : INFO : topic #1 (0.252): 0.008*\"space\" + 0.005*\"nasa\" + 0.004*\"access\" + 0.003*\"pat\" + 0.003*\"orbit\" + 0.003*\"digex\" + 0.003*\"launch\" + 0.003*\"shuttl\" + 0.003*\"graphic\" + 0.003*\"com\"\n",
+ "2019-05-06 15:57:18,957 : INFO : topic #2 (0.295): 0.020*\"armenian\" + 0.010*\"turkish\" + 0.006*\"armenia\" + 0.006*\"turk\" + 0.006*\"argic\" + 0.006*\"serdar\" + 0.005*\"greek\" + 0.005*\"turkei\" + 0.004*\"peopl\" + 0.004*\"genocid\"\n",
+ "2019-05-06 15:57:18,958 : INFO : topic #3 (0.345): 0.013*\"moral\" + 0.011*\"keith\" + 0.006*\"object\" + 0.005*\"caltech\" + 0.004*\"schneider\" + 0.004*\"anim\" + 0.004*\"jake\" + 0.004*\"allan\" + 0.004*\"boni\" + 0.004*\"cco\"\n",
+ "2019-05-06 15:57:18,959 : INFO : topic #4 (0.375): 0.011*\"islam\" + 0.011*\"god\" + 0.006*\"livesei\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.005*\"muslim\" + 0.005*\"jon\" + 0.005*\"imag\" + 0.005*\"religion\" + 0.005*\"solntz\"\n",
+ "2019-05-06 15:57:18,961 : INFO : W error: -17.08829704968913\n",
+ "2019-05-06 15:57:18,975 : INFO : PROGRESS: pass 2, at document #1000/2819\n",
+ "2019-05-06 15:57:18,981 : INFO : W error: -17.73961065930116\n",
+ "2019-05-06 15:57:18,996 : INFO : PROGRESS: pass 2, at document #2000/2819\n",
+ "2019-05-06 15:57:19,001 : INFO : W error: -18.289085863153712\n",
+ "2019-05-06 15:57:19,013 : INFO : PROGRESS: pass 2, at document #2819/2819\n",
+ "2019-05-06 15:57:19,107 : INFO : L2 norm: 28.001900396967052\n",
+ "2019-05-06 15:57:19,141 : INFO : topic #0 (0.341): 0.014*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"polici\" + 0.003*\"lebanon\"\n",
+ "2019-05-06 15:57:19,142 : INFO : topic #1 (0.230): 0.007*\"space\" + 0.005*\"nasa\" + 0.004*\"access\" + 0.003*\"orbit\" + 0.003*\"pat\" + 0.003*\"launch\" + 0.003*\"digex\" + 0.003*\"gov\" + 0.003*\"com\" + 0.003*\"graphic\"\n",
+ "2019-05-06 15:57:19,142 : INFO : topic #2 (0.284): 0.021*\"armenian\" + 0.011*\"turkish\" + 0.007*\"armenia\" + 0.007*\"turk\" + 0.007*\"argic\" + 0.006*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.004*\"soviet\"\n",
+ "2019-05-06 15:57:19,143 : INFO : topic #3 (0.346): 0.015*\"moral\" + 0.013*\"keith\" + 0.006*\"object\" + 0.006*\"caltech\" + 0.005*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"jake\" + 0.003*\"boni\"\n",
+ "2019-05-06 15:57:19,144 : INFO : topic #4 (0.365): 0.012*\"islam\" + 0.011*\"god\" + 0.006*\"livesei\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.005*\"muslim\" + 0.005*\"jon\" + 0.005*\"religion\" + 0.004*\"solntz\" + 0.004*\"wpd\"\n",
+ "2019-05-06 15:57:19,146 : INFO : W error: -18.220202313431095\n",
+ "2019-05-06 15:57:19,160 : INFO : PROGRESS: pass 3, at document #1000/2819\n",
+ "2019-05-06 15:57:19,165 : INFO : W error: -18.590446221955172\n",
+ "2019-05-06 15:57:19,180 : INFO : PROGRESS: pass 3, at document #2000/2819\n",
+ "2019-05-06 15:57:19,185 : INFO : W error: -18.936998738726114\n",
+ "2019-05-06 15:57:19,197 : INFO : PROGRESS: pass 3, at document #2819/2819\n",
+ "2019-05-06 15:57:19,291 : INFO : L2 norm: 27.993018072469805\n",
+ "2019-05-06 15:57:19,324 : INFO : topic #0 (0.348): 0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
+ "2019-05-06 15:57:19,325 : INFO : topic #1 (0.221): 0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"pat\" + 0.003*\"launch\" + 0.003*\"gov\" + 0.003*\"digex\" + 0.003*\"com\" + 0.002*\"graphic\"\n",
+ "2019-05-06 15:57:19,325 : INFO : topic #2 (0.281): 0.022*\"armenian\" + 0.011*\"turkish\" + 0.007*\"armenia\" + 0.007*\"turk\" + 0.007*\"argic\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"\n",
+ "2019-05-06 15:57:19,326 : INFO : topic #3 (0.349): 0.016*\"moral\" + 0.014*\"keith\" + 0.007*\"object\" + 0.006*\"caltech\" + 0.006*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.003*\"think\"\n",
+ "2019-05-06 15:57:19,327 : INFO : topic #4 (0.365): 0.012*\"islam\" + 0.012*\"god\" + 0.006*\"sgi\" + 0.006*\"livesei\" + 0.006*\"jaeger\" + 0.005*\"muslim\" + 0.005*\"religion\" + 0.005*\"atheist\" + 0.005*\"jon\" + 0.005*\"atheism\"\n",
+ "2019-05-06 15:57:19,328 : INFO : W error: -18.84541532652092\n",
+ "2019-05-06 15:57:19,342 : INFO : PROGRESS: pass 4, at document #1000/2819\n",
+ "2019-05-06 15:57:19,347 : INFO : W error: -19.091058241700402\n",
+ "2019-05-06 15:57:19,362 : INFO : PROGRESS: pass 4, at document #2000/2819\n",
+ "2019-05-06 15:57:19,367 : INFO : W error: -19.338453391122066\n",
+ "2019-05-06 15:57:19,378 : INFO : PROGRESS: pass 4, at document #2819/2819\n",
+ "2019-05-06 15:57:19,473 : INFO : L2 norm: 27.988158841345246\n",
+ "2019-05-06 15:57:19,506 : INFO : topic #0 (0.352): 0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
+ "2019-05-06 15:57:19,507 : INFO : topic #1 (0.210): 0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"pat\" + 0.003*\"gov\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"graphic\"\n",
+ "2019-05-06 15:57:19,508 : INFO : topic #2 (0.282): 0.023*\"armenian\" + 0.011*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"\n",
+ "2019-05-06 15:57:19,509 : INFO : topic #3 (0.353): 0.016*\"moral\" + 0.015*\"keith\" + 0.007*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"\n",
+ "2019-05-06 15:57:19,509 : INFO : topic #4 (0.367): 0.012*\"god\" + 0.012*\"islam\" + 0.006*\"jaeger\" + 0.006*\"sgi\" + 0.006*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"jon\"\n",
+ "2019-05-06 15:57:19,511 : INFO : W error: -19.245120389312117\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
- "CPU times: user 7.85 s, sys: 6.88 s, total: 14.7 s\n",
- "Wall time: 2.6 s\n"
+ "CPU times: user 1.52 s, sys: 1.84 s, total: 3.36 s\n",
+ "Wall time: 947 ms\n"
]
}
],
@@ -467,6 +458,68 @@
")"
]
},
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "W = nmf.get_topics().T\n",
+ "\n",
+ "dense_test_corpus = matutils.corpus2dense(\n",
+ " test_corpus_tfidf,\n",
+ " num_terms=W.shape[0],\n",
+ ")\n",
+ "\n",
+ "if isinstance(nmf, SklearnNmf):\n",
+ " H = nmf.transform(dense_test_corpus.T).T\n",
+ "else:\n",
+ " H = np.zeros((nmf.num_topics, len(test_corpus_tfidf)))\n",
+ " for bow_id, bow in enumerate(test_corpus_tfidf):\n",
+ " for topic_id, word_count in nmf[bow]:\n",
+ " H[topic_id, bow_id] = word_count"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "1.105176733465657"
+ ]
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "np.linalg.norm(W.dot(H))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "43.312817"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "np.linalg.norm(dense_test_corpus)"
+ ]
+ },
{
"cell_type": "markdown",
"metadata": {},
@@ -476,7 +529,7 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 11,
"metadata": {},
"outputs": [
{
@@ -485,16 +538,16 @@
"[(0,\n",
" '0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.004*\"attack\" + 0.004*\"lebanon\" + 0.003*\"polici\"'),\n",
" (1,\n",
- " '0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"gov\" + 0.003*\"pat\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"moon\"'),\n",
+ " '0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"pat\" + 0.003*\"gov\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"moon\"'),\n",
" (2,\n",
- " '0.023*\"armenian\" + 0.012*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"'),\n",
+ " '0.023*\"armenian\" + 0.011*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"'),\n",
" (3,\n",
- " '0.017*\"moral\" + 0.016*\"keith\" + 0.008*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.006*\"allan\" + 0.006*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"'),\n",
+ " '0.016*\"moral\" + 0.015*\"keith\" + 0.007*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"'),\n",
" (4,\n",
- " '0.012*\"god\" + 0.011*\"islam\" + 0.006*\"jaeger\" + 0.005*\"sgi\" + 0.005*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"rushdi\"')]"
+ " '0.012*\"god\" + 0.012*\"islam\" + 0.006*\"jaeger\" + 0.006*\"sgi\" + 0.005*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"rushdi\"')]"
]
},
- "execution_count": 8,
+ "execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
@@ -514,23 +567,23 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
- "2019-06-17 00:24:17,821 : INFO : CorpusAccumulator accumulated stats from 1000 documents\n"
+ "2019-05-06 15:57:20,590 : INFO : CorpusAccumulator accumulated stats from 1000 documents\n"
]
},
{
"data": {
"text/plain": [
- "-4.045883079644641"
+ "-4.1310114675795875"
]
},
- "execution_count": 9,
+ "execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
@@ -556,7 +609,7 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 13,
"metadata": {},
"outputs": [
{
@@ -590,7 +643,7 @@
"Convulsed, foaming immortal blood: farewell\" - J. Berryman, \"A Professor's Song\"\n",
"\n",
"====================================================================================================\n",
- "Topics: [(0, 0.10094349983895379), (1, 0.40527834628482196), (2, 0.14330724750919113), (3, 0.02887286985628184), (4, 0.32159803651075125)]\n"
+ "Topics: [(0, 0.10199317206513686), (1, 0.39976628221371285), (2, 0.1428263926167706), (3, 0.0333080734922002), (4, 0.3221060796121796)]\n"
]
}
],
@@ -611,7 +664,7 @@
},
{
"cell_type": "code",
- "execution_count": 11,
+ "execution_count": 14,
"metadata": {
"lines_to_next_cell": 2
},
@@ -621,7 +674,7 @@
"output_type": "stream",
"text": [
"Word: actual\n",
- "Topics: [(0, 0.1517466731147538), (1, 0.2824521057319929), (2, 0.042590027339691805), (3, 0.2520757387076886), (4, 0.2711354551058729)]\n"
+ "Topics: [(0, 0.15401782844659068), (1, 0.2829834256007429), (2, 0.04354905106817273), (3, 0.25783766798021135), (4, 0.26161202690428226)]\n"
]
}
],
@@ -647,7 +700,7 @@
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 15,
"metadata": {
"lines_to_next_cell": 2
},
@@ -666,14 +719,14 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 16,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "Density: 0.6864567151532269\n"
+ "Density: 0.6872475639034035\n"
]
}
],
@@ -690,14 +743,14 @@
},
{
"cell_type": "code",
- "execution_count": 14,
+ "execution_count": 17,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "Density: 0.662026862026862\n"
+ "Density: 0.6615384615384615\n"
]
}
],
@@ -741,7 +794,7 @@
},
{
"cell_type": "code",
- "execution_count": 15,
+ "execution_count": 18,
"metadata": {
"lines_to_next_cell": 2
},
@@ -760,7 +813,7 @@
},
{
"cell_type": "code",
- "execution_count": 16,
+ "execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
@@ -790,7 +843,7 @@
" with measure_ram(memprof_filename, tick=tick):\n",
" result = func()\n",
"\n",
- " elapsed_time = pd.to_timedelta(time.time() - start, unit='s').round('s')\n",
+ " elapsed_time = pd.to_timedelta(time.time() - start, unit='s').round('ms')\n",
"\n",
" memprof_df = pd.read_csv(memprof_filename, squeeze=True)\n",
"\n",
@@ -813,7 +866,7 @@
" else:\n",
" X_train = np.zeros((len(train_corpus), model.num_topics))\n",
" for bow_id, bow in enumerate(train_corpus):\n",
- " for topic_id, word_count in model.get_document_topics(bow):\n",
+ " for topic_id, word_count in model[bow]:\n",
" X_train[bow_id, topic_id] = word_count\n",
"\n",
" log_reg = LogisticRegressionCV(multi_class='multinomial', cv=5)\n",
@@ -876,7 +929,7 @@
" else:\n",
" H = np.zeros((model.num_topics, len(test_corpus)))\n",
" for bow_id, bow in enumerate(test_corpus):\n",
- " for topic_id, word_count in model.get_document_topics(bow):\n",
+ " for topic_id, word_count in model[bow]:\n",
" H[topic_id, bow_id] = word_count\n",
"\n",
" l2_norm = None\n",
@@ -923,243 +976,11 @@
},
{
"cell_type": "code",
- "execution_count": 17,
+ "execution_count": null,
"metadata": {
"scrolled": true
},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:24:17,972 : INFO : using symmetric alpha at 0.2\n",
- "2019-06-17 00:24:17,975 : INFO : using symmetric eta at 0.2\n",
- "2019-06-17 00:24:17,977 : INFO : using serial LDA version on this node\n",
- "2019-06-17 00:24:17,986 : INFO : running online (multi-pass) LDA training, 5 topics, 5 passes over the supplied corpus of 2819 documents, updating model once every 1000 documents, evaluating perplexity every 2819 documents, iterating 50x with a convergence threshold of 0.001000\n",
- "2019-06-17 00:24:17,989 : INFO : PROGRESS: pass 0, at document #1000/2819\n",
- "2019-06-17 00:24:18,934 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:18,939 : INFO : topic #0 (0.200): 0.006*\"com\" + 0.006*\"like\" + 0.006*\"space\" + 0.004*\"univers\" + 0.004*\"know\" + 0.004*\"nntp\" + 0.004*\"imag\" + 0.004*\"nasa\" + 0.004*\"time\" + 0.004*\"program\"\n",
- "2019-06-17 00:24:18,940 : INFO : topic #1 (0.200): 0.007*\"imag\" + 0.005*\"com\" + 0.004*\"peopl\" + 0.004*\"know\" + 0.004*\"univers\" + 0.004*\"nntp\" + 0.004*\"host\" + 0.004*\"jpeg\" + 0.004*\"good\" + 0.004*\"work\"\n",
- "2019-06-17 00:24:18,940 : INFO : topic #2 (0.200): 0.007*\"peopl\" + 0.005*\"com\" + 0.005*\"like\" + 0.004*\"new\" + 0.004*\"know\" + 0.004*\"think\" + 0.004*\"nntp\" + 0.003*\"isra\" + 0.003*\"host\" + 0.003*\"question\"\n",
- "2019-06-17 00:24:18,942 : INFO : topic #3 (0.200): 0.008*\"com\" + 0.006*\"space\" + 0.005*\"peopl\" + 0.005*\"like\" + 0.004*\"israel\" + 0.004*\"isra\" + 0.004*\"nasa\" + 0.004*\"think\" + 0.003*\"time\" + 0.003*\"right\"\n",
- "2019-06-17 00:24:18,943 : INFO : topic #4 (0.200): 0.006*\"com\" + 0.006*\"time\" + 0.005*\"host\" + 0.005*\"univers\" + 0.005*\"peopl\" + 0.005*\"nntp\" + 0.004*\"know\" + 0.004*\"god\" + 0.004*\"like\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:18,944 : INFO : topic diff=1.680969, rho=1.000000\n",
- "2019-06-17 00:24:18,947 : INFO : PROGRESS: pass 0, at document #2000/2819\n",
- "2019-06-17 00:24:19,806 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:19,811 : INFO : topic #0 (0.200): 0.008*\"space\" + 0.007*\"com\" + 0.005*\"imag\" + 0.005*\"like\" + 0.005*\"nasa\" + 0.005*\"program\" + 0.004*\"univers\" + 0.004*\"graphic\" + 0.004*\"data\" + 0.004*\"know\"\n",
- "2019-06-17 00:24:19,812 : INFO : topic #1 (0.200): 0.009*\"imag\" + 0.006*\"com\" + 0.005*\"know\" + 0.004*\"univers\" + 0.004*\"peopl\" + 0.004*\"like\" + 0.004*\"work\" + 0.004*\"want\" + 0.004*\"armenian\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:19,813 : INFO : topic #2 (0.200): 0.012*\"peopl\" + 0.007*\"know\" + 0.006*\"armenian\" + 0.006*\"said\" + 0.006*\"like\" + 0.005*\"think\" + 0.004*\"right\" + 0.004*\"time\" + 0.004*\"wai\" + 0.004*\"thing\"\n",
- "2019-06-17 00:24:19,814 : INFO : topic #3 (0.200): 0.008*\"com\" + 0.007*\"space\" + 0.006*\"israel\" + 0.005*\"peopl\" + 0.005*\"like\" + 0.005*\"isra\" + 0.004*\"nasa\" + 0.004*\"time\" + 0.003*\"think\" + 0.003*\"right\"\n",
- "2019-06-17 00:24:19,816 : INFO : topic #4 (0.200): 0.008*\"god\" + 0.006*\"univers\" + 0.006*\"armenian\" + 0.005*\"com\" + 0.005*\"time\" + 0.005*\"peopl\" + 0.005*\"host\" + 0.004*\"know\" + 0.004*\"nntp\" + 0.004*\"like\"\n",
- "2019-06-17 00:24:19,817 : INFO : topic diff=0.838420, rho=0.707107\n",
- "2019-06-17 00:24:20,803 : INFO : -8.089 per-word bound, 272.3 perplexity estimate based on a held-out corpus of 819 documents with 113268 words\n",
- "2019-06-17 00:24:20,804 : INFO : PROGRESS: pass 0, at document #2819/2819\n",
- "2019-06-17 00:24:21,432 : INFO : merging changes from 819 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:21,436 : INFO : topic #0 (0.200): 0.009*\"space\" + 0.008*\"com\" + 0.006*\"graphic\" + 0.005*\"program\" + 0.005*\"imag\" + 0.004*\"nasa\" + 0.004*\"like\" + 0.004*\"univers\" + 0.004*\"file\" + 0.004*\"new\"\n",
- "2019-06-17 00:24:21,437 : INFO : topic #1 (0.200): 0.007*\"com\" + 0.007*\"imag\" + 0.005*\"univers\" + 0.005*\"know\" + 0.004*\"work\" + 0.004*\"like\" + 0.004*\"host\" + 0.004*\"think\" + 0.004*\"nntp\" + 0.004*\"moral\"\n",
- "2019-06-17 00:24:21,437 : INFO : topic #2 (0.200): 0.011*\"peopl\" + 0.007*\"armenian\" + 0.006*\"said\" + 0.006*\"turkish\" + 0.006*\"know\" + 0.005*\"think\" + 0.005*\"like\" + 0.005*\"right\" + 0.005*\"jew\" + 0.004*\"isra\"\n",
- "2019-06-17 00:24:21,438 : INFO : topic #3 (0.200): 0.008*\"com\" + 0.008*\"israel\" + 0.006*\"space\" + 0.005*\"bike\" + 0.005*\"isra\" + 0.005*\"like\" + 0.004*\"peopl\" + 0.004*\"year\" + 0.004*\"jew\" + 0.004*\"time\"\n",
- "2019-06-17 00:24:21,439 : INFO : topic #4 (0.200): 0.008*\"god\" + 0.007*\"armenian\" + 0.006*\"univers\" + 0.005*\"peopl\" + 0.005*\"com\" + 0.005*\"exist\" + 0.005*\"time\" + 0.004*\"like\" + 0.004*\"think\" + 0.004*\"know\"\n",
- "2019-06-17 00:24:21,440 : INFO : topic diff=0.645193, rho=0.577350\n",
- "2019-06-17 00:24:21,441 : INFO : PROGRESS: pass 1, at document #1000/2819\n",
- "2019-06-17 00:24:22,110 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:22,114 : INFO : topic #0 (0.200): 0.010*\"space\" + 0.007*\"com\" + 0.006*\"graphic\" + 0.006*\"nasa\" + 0.005*\"program\" + 0.005*\"imag\" + 0.005*\"file\" + 0.004*\"data\" + 0.004*\"univers\" + 0.004*\"like\"\n",
- "2019-06-17 00:24:22,115 : INFO : topic #1 (0.200): 0.008*\"imag\" + 0.008*\"com\" + 0.005*\"univers\" + 0.005*\"know\" + 0.005*\"like\" + 0.005*\"host\" + 0.005*\"bit\" + 0.005*\"nntp\" + 0.004*\"work\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:22,116 : INFO : topic #2 (0.200): 0.011*\"peopl\" + 0.007*\"armenian\" + 0.006*\"said\" + 0.006*\"right\" + 0.006*\"turkish\" + 0.005*\"know\" + 0.005*\"isra\" + 0.005*\"think\" + 0.005*\"like\" + 0.005*\"jew\"\n",
- "2019-06-17 00:24:22,117 : INFO : topic #3 (0.200): 0.009*\"com\" + 0.008*\"israel\" + 0.006*\"bike\" + 0.006*\"isra\" + 0.005*\"space\" + 0.005*\"like\" + 0.004*\"peopl\" + 0.004*\"year\" + 0.004*\"think\" + 0.004*\"time\"\n",
- "2019-06-17 00:24:22,118 : INFO : topic #4 (0.200): 0.010*\"god\" + 0.007*\"armenian\" + 0.006*\"peopl\" + 0.005*\"univers\" + 0.005*\"com\" + 0.005*\"time\" + 0.005*\"exist\" + 0.004*\"islam\" + 0.004*\"believ\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:22,119 : INFO : topic diff=0.427516, rho=0.455535\n",
- "2019-06-17 00:24:22,120 : INFO : PROGRESS: pass 1, at document #2000/2819\n",
- "2019-06-17 00:24:22,819 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:22,823 : INFO : topic #0 (0.200): 0.011*\"space\" + 0.007*\"imag\" + 0.007*\"com\" + 0.006*\"nasa\" + 0.006*\"program\" + 0.005*\"graphic\" + 0.005*\"data\" + 0.004*\"file\" + 0.004*\"univers\" + 0.004*\"new\"\n",
- "2019-06-17 00:24:22,824 : INFO : topic #1 (0.200): 0.009*\"com\" + 0.007*\"imag\" + 0.005*\"like\" + 0.005*\"know\" + 0.005*\"univers\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.004*\"think\" + 0.004*\"moral\" + 0.004*\"work\"\n",
- "2019-06-17 00:24:22,824 : INFO : topic #2 (0.200): 0.013*\"peopl\" + 0.009*\"armenian\" + 0.007*\"said\" + 0.007*\"know\" + 0.006*\"right\" + 0.005*\"like\" + 0.005*\"think\" + 0.005*\"kill\" + 0.005*\"turkish\" + 0.004*\"jew\"\n",
- "2019-06-17 00:24:22,825 : INFO : topic #3 (0.200): 0.009*\"com\" + 0.009*\"israel\" + 0.006*\"isra\" + 0.006*\"bike\" + 0.005*\"like\" + 0.005*\"space\" + 0.004*\"state\" + 0.004*\"think\" + 0.004*\"peopl\" + 0.004*\"host\"\n",
- "2019-06-17 00:24:22,827 : INFO : topic #4 (0.200): 0.010*\"god\" + 0.007*\"armenian\" + 0.006*\"peopl\" + 0.006*\"univers\" + 0.005*\"exist\" + 0.005*\"islam\" + 0.005*\"com\" + 0.005*\"believ\" + 0.005*\"time\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:22,827 : INFO : topic diff=0.427394, rho=0.455535\n",
- "2019-06-17 00:24:23,767 : INFO : -7.871 per-word bound, 234.1 perplexity estimate based on a held-out corpus of 819 documents with 113268 words\n",
- "2019-06-17 00:24:23,768 : INFO : PROGRESS: pass 1, at document #2819/2819\n",
- "2019-06-17 00:24:24,303 : INFO : merging changes from 819 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:24,307 : INFO : topic #0 (0.200): 0.011*\"space\" + 0.007*\"com\" + 0.006*\"graphic\" + 0.006*\"imag\" + 0.006*\"program\" + 0.005*\"nasa\" + 0.004*\"file\" + 0.004*\"launch\" + 0.004*\"univers\" + 0.004*\"new\"\n",
- "2019-06-17 00:24:24,308 : INFO : topic #1 (0.200): 0.010*\"com\" + 0.006*\"like\" + 0.006*\"univers\" + 0.005*\"imag\" + 0.005*\"know\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.005*\"think\" + 0.005*\"work\" + 0.004*\"henri\"\n",
- "2019-06-17 00:24:24,312 : INFO : topic #2 (0.200): 0.012*\"peopl\" + 0.009*\"armenian\" + 0.008*\"turkish\" + 0.007*\"said\" + 0.006*\"jew\" + 0.006*\"right\" + 0.006*\"know\" + 0.005*\"kill\" + 0.005*\"like\" + 0.005*\"isra\"\n",
- "2019-06-17 00:24:24,314 : INFO : topic #3 (0.200): 0.010*\"com\" + 0.009*\"israel\" + 0.008*\"bike\" + 0.006*\"isra\" + 0.005*\"like\" + 0.005*\"dod\" + 0.004*\"motorcycl\" + 0.004*\"think\" + 0.004*\"state\" + 0.004*\"year\"\n",
- "2019-06-17 00:24:24,316 : INFO : topic #4 (0.200): 0.010*\"god\" + 0.007*\"armenian\" + 0.006*\"peopl\" + 0.006*\"exist\" + 0.006*\"univers\" + 0.005*\"com\" + 0.005*\"think\" + 0.005*\"believ\" + 0.004*\"islam\" + 0.004*\"like\"\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:24:24,317 : INFO : topic diff=0.416347, rho=0.455535\n",
- "2019-06-17 00:24:24,318 : INFO : PROGRESS: pass 2, at document #1000/2819\n",
- "2019-06-17 00:24:24,982 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:24,986 : INFO : topic #0 (0.200): 0.011*\"space\" + 0.007*\"imag\" + 0.006*\"nasa\" + 0.006*\"com\" + 0.006*\"graphic\" + 0.006*\"program\" + 0.005*\"file\" + 0.005*\"data\" + 0.005*\"orbit\" + 0.004*\"new\"\n",
- "2019-06-17 00:24:24,987 : INFO : topic #1 (0.200): 0.010*\"com\" + 0.006*\"imag\" + 0.006*\"like\" + 0.006*\"nntp\" + 0.006*\"host\" + 0.006*\"univers\" + 0.005*\"bit\" + 0.005*\"know\" + 0.005*\"think\" + 0.005*\"work\"\n",
- "2019-06-17 00:24:24,988 : INFO : topic #2 (0.200): 0.011*\"peopl\" + 0.009*\"armenian\" + 0.007*\"turkish\" + 0.007*\"said\" + 0.007*\"right\" + 0.006*\"jew\" + 0.005*\"know\" + 0.005*\"kill\" + 0.005*\"isra\" + 0.005*\"like\"\n",
- "2019-06-17 00:24:24,989 : INFO : topic #3 (0.200): 0.010*\"com\" + 0.010*\"israel\" + 0.008*\"bike\" + 0.006*\"isra\" + 0.005*\"like\" + 0.004*\"dod\" + 0.004*\"host\" + 0.004*\"think\" + 0.004*\"nntp\" + 0.004*\"state\"\n",
- "2019-06-17 00:24:24,990 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.007*\"peopl\" + 0.006*\"armenian\" + 0.006*\"exist\" + 0.005*\"univers\" + 0.005*\"islam\" + 0.005*\"com\" + 0.005*\"think\" + 0.005*\"believ\" + 0.005*\"atheist\"\n",
- "2019-06-17 00:24:24,991 : INFO : topic diff=0.332567, rho=0.414549\n",
- "2019-06-17 00:24:24,991 : INFO : PROGRESS: pass 2, at document #2000/2819\n",
- "2019-06-17 00:24:25,619 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:25,623 : INFO : topic #0 (0.200): 0.012*\"space\" + 0.008*\"imag\" + 0.007*\"nasa\" + 0.006*\"com\" + 0.006*\"program\" + 0.006*\"graphic\" + 0.005*\"data\" + 0.005*\"file\" + 0.004*\"new\" + 0.004*\"univers\"\n",
- "2019-06-17 00:24:25,624 : INFO : topic #1 (0.200): 0.011*\"com\" + 0.007*\"like\" + 0.006*\"know\" + 0.006*\"nntp\" + 0.006*\"host\" + 0.006*\"univers\" + 0.005*\"imag\" + 0.005*\"bit\" + 0.005*\"think\" + 0.005*\"henri\"\n",
- "2019-06-17 00:24:25,625 : INFO : topic #2 (0.200): 0.013*\"peopl\" + 0.010*\"armenian\" + 0.008*\"said\" + 0.007*\"know\" + 0.006*\"right\" + 0.006*\"turkish\" + 0.006*\"kill\" + 0.006*\"jew\" + 0.005*\"like\" + 0.005*\"think\"\n",
- "2019-06-17 00:24:25,627 : INFO : topic #3 (0.200): 0.010*\"com\" + 0.009*\"israel\" + 0.008*\"bike\" + 0.007*\"isra\" + 0.005*\"like\" + 0.005*\"host\" + 0.004*\"nntp\" + 0.004*\"state\" + 0.004*\"think\" + 0.004*\"dod\"\n",
- "2019-06-17 00:24:25,629 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.007*\"peopl\" + 0.006*\"exist\" + 0.006*\"univers\" + 0.005*\"armenian\" + 0.005*\"islam\" + 0.005*\"believ\" + 0.005*\"think\" + 0.005*\"com\" + 0.005*\"atheist\"\n",
- "2019-06-17 00:24:25,630 : INFO : topic diff=0.326337, rho=0.414549\n",
- "2019-06-17 00:24:26,456 : INFO : -7.813 per-word bound, 224.8 perplexity estimate based on a held-out corpus of 819 documents with 113268 words\n",
- "2019-06-17 00:24:26,457 : INFO : PROGRESS: pass 2, at document #2819/2819\n",
- "2019-06-17 00:24:26,932 : INFO : merging changes from 819 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:26,936 : INFO : topic #0 (0.200): 0.012*\"space\" + 0.007*\"imag\" + 0.006*\"graphic\" + 0.006*\"nasa\" + 0.006*\"program\" + 0.006*\"com\" + 0.005*\"launch\" + 0.005*\"file\" + 0.004*\"new\" + 0.004*\"univers\"\n",
- "2019-06-17 00:24:26,937 : INFO : topic #1 (0.200): 0.012*\"com\" + 0.006*\"like\" + 0.006*\"nntp\" + 0.006*\"host\" + 0.006*\"univers\" + 0.006*\"know\" + 0.005*\"think\" + 0.005*\"work\" + 0.005*\"henri\" + 0.005*\"bit\"\n",
- "2019-06-17 00:24:26,938 : INFO : topic #2 (0.200): 0.012*\"peopl\" + 0.011*\"armenian\" + 0.008*\"turkish\" + 0.007*\"said\" + 0.007*\"jew\" + 0.006*\"right\" + 0.006*\"know\" + 0.005*\"kill\" + 0.005*\"isra\" + 0.005*\"like\"\n",
- "2019-06-17 00:24:26,939 : INFO : topic #3 (0.200): 0.011*\"com\" + 0.010*\"israel\" + 0.009*\"bike\" + 0.006*\"isra\" + 0.006*\"dod\" + 0.005*\"like\" + 0.005*\"motorcycl\" + 0.004*\"host\" + 0.004*\"ride\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:26,939 : INFO : topic #4 (0.200): 0.010*\"god\" + 0.007*\"peopl\" + 0.006*\"exist\" + 0.006*\"univers\" + 0.005*\"think\" + 0.005*\"armenian\" + 0.005*\"com\" + 0.005*\"believ\" + 0.005*\"islam\" + 0.005*\"christian\"\n",
- "2019-06-17 00:24:26,940 : INFO : topic diff=0.317634, rho=0.414549\n",
- "2019-06-17 00:24:26,941 : INFO : PROGRESS: pass 3, at document #1000/2819\n",
- "2019-06-17 00:24:27,495 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:27,499 : INFO : topic #0 (0.200): 0.012*\"space\" + 0.007*\"imag\" + 0.007*\"nasa\" + 0.006*\"graphic\" + 0.006*\"program\" + 0.005*\"com\" + 0.005*\"file\" + 0.005*\"orbit\" + 0.005*\"data\" + 0.004*\"new\"\n",
- "2019-06-17 00:24:27,500 : INFO : topic #1 (0.200): 0.012*\"com\" + 0.007*\"like\" + 0.006*\"nntp\" + 0.006*\"host\" + 0.006*\"univers\" + 0.005*\"know\" + 0.005*\"bit\" + 0.005*\"think\" + 0.005*\"work\" + 0.005*\"time\"\n",
- "2019-06-17 00:24:27,501 : INFO : topic #2 (0.200): 0.011*\"peopl\" + 0.011*\"armenian\" + 0.008*\"turkish\" + 0.007*\"said\" + 0.007*\"jew\" + 0.007*\"right\" + 0.006*\"kill\" + 0.005*\"know\" + 0.005*\"isra\" + 0.005*\"arab\"\n",
- "2019-06-17 00:24:27,502 : INFO : topic #3 (0.200): 0.011*\"com\" + 0.010*\"israel\" + 0.008*\"bike\" + 0.007*\"isra\" + 0.005*\"like\" + 0.005*\"dod\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.004*\"think\" + 0.004*\"motorcycl\"\n",
- "2019-06-17 00:24:27,503 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.007*\"peopl\" + 0.006*\"exist\" + 0.006*\"think\" + 0.005*\"islam\" + 0.005*\"atheist\" + 0.005*\"univers\" + 0.005*\"believ\" + 0.005*\"com\" + 0.005*\"religion\"\n",
- "2019-06-17 00:24:27,503 : INFO : topic diff=0.252457, rho=0.382948\n",
- "2019-06-17 00:24:27,504 : INFO : PROGRESS: pass 3, at document #2000/2819\n",
- "2019-06-17 00:24:28,064 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:28,067 : INFO : topic #0 (0.200): 0.013*\"space\" + 0.008*\"imag\" + 0.007*\"nasa\" + 0.006*\"program\" + 0.006*\"graphic\" + 0.005*\"com\" + 0.005*\"file\" + 0.005*\"data\" + 0.005*\"new\" + 0.004*\"orbit\"\n",
- "2019-06-17 00:24:28,069 : INFO : topic #1 (0.200): 0.013*\"com\" + 0.007*\"like\" + 0.006*\"nntp\" + 0.006*\"host\" + 0.006*\"know\" + 0.006*\"univers\" + 0.005*\"bit\" + 0.005*\"henri\" + 0.005*\"think\" + 0.004*\"time\"\n",
- "2019-06-17 00:24:28,069 : INFO : topic #2 (0.200): 0.012*\"peopl\" + 0.012*\"armenian\" + 0.008*\"said\" + 0.007*\"turkish\" + 0.006*\"know\" + 0.006*\"right\" + 0.006*\"jew\" + 0.006*\"kill\" + 0.005*\"like\" + 0.005*\"isra\"\n",
- "2019-06-17 00:24:28,071 : INFO : topic #3 (0.200): 0.011*\"com\" + 0.010*\"israel\" + 0.008*\"bike\" + 0.007*\"isra\" + 0.005*\"like\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.005*\"dod\" + 0.005*\"state\" + 0.004*\"think\"\n",
- "2019-06-17 00:24:28,072 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.007*\"peopl\" + 0.006*\"exist\" + 0.006*\"islam\" + 0.006*\"univers\" + 0.006*\"think\" + 0.005*\"believ\" + 0.005*\"com\" + 0.005*\"atheist\" + 0.004*\"like\"\n",
- "2019-06-17 00:24:28,072 : INFO : topic diff=0.249839, rho=0.382948\n",
- "2019-06-17 00:24:28,840 : INFO : -7.780 per-word bound, 219.8 perplexity estimate based on a held-out corpus of 819 documents with 113268 words\n",
- "2019-06-17 00:24:28,841 : INFO : PROGRESS: pass 3, at document #2819/2819\n",
- "2019-06-17 00:24:29,291 : INFO : merging changes from 819 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:29,295 : INFO : topic #0 (0.200): 0.012*\"space\" + 0.007*\"imag\" + 0.006*\"nasa\" + 0.006*\"graphic\" + 0.006*\"program\" + 0.005*\"com\" + 0.005*\"launch\" + 0.005*\"file\" + 0.004*\"new\" + 0.004*\"orbit\"\n",
- "2019-06-17 00:24:29,295 : INFO : topic #1 (0.200): 0.014*\"com\" + 0.007*\"like\" + 0.007*\"nntp\" + 0.006*\"host\" + 0.006*\"know\" + 0.006*\"univers\" + 0.005*\"think\" + 0.005*\"henri\" + 0.005*\"bit\" + 0.005*\"work\"\n",
- "2019-06-17 00:24:29,296 : INFO : topic #2 (0.200): 0.013*\"armenian\" + 0.012*\"peopl\" + 0.009*\"turkish\" + 0.007*\"jew\" + 0.007*\"said\" + 0.006*\"right\" + 0.005*\"know\" + 0.005*\"kill\" + 0.005*\"isra\" + 0.005*\"turkei\"\n",
- "2019-06-17 00:24:29,297 : INFO : topic #3 (0.200): 0.011*\"com\" + 0.010*\"israel\" + 0.009*\"bike\" + 0.006*\"isra\" + 0.006*\"dod\" + 0.005*\"like\" + 0.005*\"ride\" + 0.005*\"motorcycl\" + 0.005*\"host\" + 0.005*\"nntp\"\n",
- "2019-06-17 00:24:29,299 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.008*\"peopl\" + 0.006*\"exist\" + 0.006*\"think\" + 0.006*\"univers\" + 0.005*\"com\" + 0.005*\"believ\" + 0.005*\"islam\" + 0.005*\"christian\" + 0.005*\"atheist\"\n",
- "2019-06-17 00:24:29,299 : INFO : topic diff=0.247979, rho=0.382948\n",
- "2019-06-17 00:24:29,300 : INFO : PROGRESS: pass 4, at document #1000/2819\n",
- "2019-06-17 00:24:29,848 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:29,851 : INFO : topic #0 (0.200): 0.013*\"space\" + 0.008*\"imag\" + 0.007*\"nasa\" + 0.006*\"program\" + 0.006*\"graphic\" + 0.005*\"orbit\" + 0.005*\"file\" + 0.005*\"com\" + 0.005*\"data\" + 0.005*\"new\"\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:24:29,852 : INFO : topic #1 (0.200): 0.013*\"com\" + 0.007*\"like\" + 0.007*\"nntp\" + 0.007*\"host\" + 0.006*\"univers\" + 0.006*\"know\" + 0.005*\"bit\" + 0.005*\"think\" + 0.005*\"time\" + 0.005*\"work\"\n",
- "2019-06-17 00:24:29,853 : INFO : topic #2 (0.200): 0.013*\"armenian\" + 0.011*\"peopl\" + 0.008*\"turkish\" + 0.007*\"said\" + 0.007*\"jew\" + 0.006*\"right\" + 0.006*\"kill\" + 0.005*\"know\" + 0.005*\"isra\" + 0.005*\"arab\"\n",
- "2019-06-17 00:24:29,855 : INFO : topic #3 (0.200): 0.012*\"com\" + 0.010*\"israel\" + 0.009*\"bike\" + 0.007*\"isra\" + 0.006*\"dod\" + 0.005*\"like\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.005*\"ride\" + 0.005*\"think\"\n",
- "2019-06-17 00:24:29,856 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.008*\"peopl\" + 0.006*\"think\" + 0.006*\"exist\" + 0.006*\"islam\" + 0.005*\"atheist\" + 0.005*\"believ\" + 0.005*\"com\" + 0.005*\"univers\" + 0.005*\"moral\"\n",
- "2019-06-17 00:24:29,856 : INFO : topic diff=0.202108, rho=0.357622\n",
- "2019-06-17 00:24:29,857 : INFO : PROGRESS: pass 4, at document #2000/2819\n",
- "2019-06-17 00:24:30,410 : INFO : merging changes from 1000 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:30,414 : INFO : topic #0 (0.200): 0.013*\"space\" + 0.009*\"imag\" + 0.007*\"nasa\" + 0.006*\"program\" + 0.006*\"graphic\" + 0.005*\"file\" + 0.005*\"data\" + 0.005*\"com\" + 0.005*\"orbit\" + 0.005*\"new\"\n",
- "2019-06-17 00:24:30,415 : INFO : topic #1 (0.200): 0.014*\"com\" + 0.008*\"like\" + 0.007*\"nntp\" + 0.007*\"host\" + 0.006*\"know\" + 0.006*\"univers\" + 0.005*\"bit\" + 0.005*\"henri\" + 0.005*\"time\" + 0.005*\"think\"\n",
- "2019-06-17 00:24:30,416 : INFO : topic #2 (0.200): 0.013*\"armenian\" + 0.012*\"peopl\" + 0.008*\"said\" + 0.007*\"turkish\" + 0.006*\"jew\" + 0.006*\"know\" + 0.006*\"right\" + 0.006*\"kill\" + 0.005*\"like\" + 0.005*\"isra\"\n",
- "2019-06-17 00:24:30,417 : INFO : topic #3 (0.200): 0.011*\"com\" + 0.010*\"israel\" + 0.008*\"bike\" + 0.007*\"isra\" + 0.006*\"host\" + 0.005*\"like\" + 0.005*\"nntp\" + 0.005*\"dod\" + 0.005*\"state\" + 0.005*\"think\"\n",
- "2019-06-17 00:24:30,418 : INFO : topic #4 (0.200): 0.012*\"god\" + 0.008*\"peopl\" + 0.006*\"think\" + 0.006*\"exist\" + 0.006*\"islam\" + 0.006*\"univers\" + 0.005*\"believ\" + 0.005*\"com\" + 0.005*\"atheist\" + 0.005*\"moral\"\n",
- "2019-06-17 00:24:30,419 : INFO : topic diff=0.201499, rho=0.357622\n",
- "2019-06-17 00:24:31,195 : INFO : -7.758 per-word bound, 216.5 perplexity estimate based on a held-out corpus of 819 documents with 113268 words\n",
- "2019-06-17 00:24:31,195 : INFO : PROGRESS: pass 4, at document #2819/2819\n",
- "2019-06-17 00:24:31,621 : INFO : merging changes from 819 documents into a model of 2819 documents\n",
- "2019-06-17 00:24:31,626 : INFO : topic #0 (0.200): 0.013*\"space\" + 0.008*\"imag\" + 0.007*\"nasa\" + 0.006*\"graphic\" + 0.006*\"program\" + 0.005*\"launch\" + 0.005*\"file\" + 0.005*\"com\" + 0.005*\"new\" + 0.004*\"orbit\"\n",
- "2019-06-17 00:24:31,627 : INFO : topic #1 (0.200): 0.015*\"com\" + 0.007*\"like\" + 0.007*\"nntp\" + 0.007*\"host\" + 0.006*\"know\" + 0.006*\"univers\" + 0.005*\"henri\" + 0.005*\"work\" + 0.005*\"bit\" + 0.005*\"think\"\n",
- "2019-06-17 00:24:31,628 : INFO : topic #2 (0.200): 0.014*\"armenian\" + 0.011*\"peopl\" + 0.009*\"turkish\" + 0.007*\"jew\" + 0.007*\"said\" + 0.006*\"right\" + 0.005*\"know\" + 0.005*\"kill\" + 0.005*\"isra\" + 0.005*\"turkei\"\n",
- "2019-06-17 00:24:31,629 : INFO : topic #3 (0.200): 0.012*\"com\" + 0.010*\"israel\" + 0.009*\"bike\" + 0.006*\"isra\" + 0.006*\"dod\" + 0.005*\"like\" + 0.005*\"ride\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.005*\"motorcycl\"\n",
- "2019-06-17 00:24:31,631 : INFO : topic #4 (0.200): 0.011*\"god\" + 0.008*\"peopl\" + 0.007*\"think\" + 0.006*\"exist\" + 0.006*\"univers\" + 0.005*\"com\" + 0.005*\"believ\" + 0.005*\"islam\" + 0.005*\"moral\" + 0.005*\"christian\"\n",
- "2019-06-17 00:24:31,631 : INFO : topic diff=0.204980, rho=0.357622\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "2019-06-17 00:24:36,879 : INFO : CorpusAccumulator accumulated stats from 1000 documents\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "/home/misha/envs/gensim/lib/python3.7/site-packages/sklearn/linear_model/logistic.py:758: ConvergenceWarning: lbfgs failed to converge. Increase the number of iterations.\n",
- " \"of iterations.\", ConvergenceWarning)\n",
- "2019-06-17 00:24:46,360 : INFO : CorpusAccumulator accumulated stats from 1000 documents\n",
- "2019-06-17 00:24:46,436 : INFO : running NMF training, 5 topics, 5 passes over the supplied corpus of 2819 documents, evaluating l2 norm every 2819 documents\n",
- "2019-06-17 00:24:46,471 : INFO : PROGRESS: pass 0, at document #1000/2819\n",
- "2019-06-17 00:24:46,497 : INFO : W error diff: -inf\n",
- "2019-06-17 00:24:46,522 : INFO : PROGRESS: pass 0, at document #2000/2819\n",
- "2019-06-17 00:24:46,540 : INFO : W error diff: -2.1783593508632997\n",
- "2019-06-17 00:24:46,561 : INFO : PROGRESS: pass 0, at document #2819/2819\n",
- "2019-06-17 00:24:46,914 : INFO : L2 norm: 28.137070033533682\n",
- "2019-06-17 00:24:46,970 : INFO : topic #0 (0.404): 0.012*\"isra\" + 0.011*\"israel\" + 0.007*\"arab\" + 0.006*\"jew\" + 0.005*\"palestinian\" + 0.004*\"henri\" + 0.004*\"toronto\" + 0.003*\"question\" + 0.003*\"kill\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:46,972 : INFO : topic #1 (0.358): 0.010*\"space\" + 0.005*\"access\" + 0.005*\"nasa\" + 0.004*\"pat\" + 0.004*\"digex\" + 0.004*\"orbit\" + 0.004*\"shuttl\" + 0.003*\"graphic\" + 0.003*\"data\" + 0.003*\"com\"\n",
- "2019-06-17 00:24:46,974 : INFO : topic #2 (0.388): 0.015*\"armenian\" + 0.007*\"turkish\" + 0.005*\"greek\" + 0.005*\"peopl\" + 0.005*\"armenia\" + 0.005*\"turk\" + 0.005*\"argic\" + 0.004*\"bike\" + 0.004*\"serdar\" + 0.004*\"turkei\"\n",
- "2019-06-17 00:24:46,975 : INFO : topic #3 (0.423): 0.011*\"moral\" + 0.007*\"keith\" + 0.004*\"anim\" + 0.004*\"jake\" + 0.004*\"boni\" + 0.004*\"act\" + 0.004*\"instinct\" + 0.003*\"think\" + 0.003*\"caltech\" + 0.003*\"object\"\n",
- "2019-06-17 00:24:46,977 : INFO : topic #4 (0.441): 0.011*\"islam\" + 0.010*\"god\" + 0.007*\"muslim\" + 0.007*\"livesei\" + 0.007*\"imag\" + 0.006*\"sgi\" + 0.006*\"jaeger\" + 0.005*\"jon\" + 0.005*\"solntz\" + 0.005*\"wpd\"\n",
- "2019-06-17 00:24:46,992 : INFO : W error diff: -0.6087333117616911\n",
- "2019-06-17 00:24:47,031 : INFO : PROGRESS: pass 1, at document #1000/2819\n",
- "2019-06-17 00:24:47,047 : INFO : W error diff: -1.5858439279007879\n",
- "2019-06-17 00:24:47,067 : INFO : PROGRESS: pass 1, at document #2000/2819\n",
- "2019-06-17 00:24:47,078 : INFO : W error diff: -1.1329837530094071\n",
- "2019-06-17 00:24:47,096 : INFO : PROGRESS: pass 1, at document #2819/2819\n",
- "2019-06-17 00:24:47,468 : INFO : L2 norm: 28.02006726219276\n",
- "2019-06-17 00:24:47,539 : INFO : topic #0 (0.345): 0.013*\"israel\" + 0.013*\"isra\" + 0.008*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.003*\"peac\" + 0.003*\"polici\" + 0.003*\"attack\" + 0.003*\"henri\"\n",
- "2019-06-17 00:24:47,542 : INFO : topic #1 (0.253): 0.011*\"space\" + 0.007*\"nasa\" + 0.005*\"access\" + 0.004*\"orbit\" + 0.004*\"pat\" + 0.004*\"digex\" + 0.004*\"launch\" + 0.004*\"shuttl\" + 0.004*\"graphic\" + 0.004*\"com\"\n",
- "2019-06-17 00:24:47,544 : INFO : topic #2 (0.299): 0.020*\"armenian\" + 0.010*\"turkish\" + 0.007*\"armenia\" + 0.006*\"turk\" + 0.006*\"argic\" + 0.006*\"serdar\" + 0.005*\"greek\" + 0.005*\"turkei\" + 0.004*\"genocid\" + 0.004*\"peopl\"\n",
- "2019-06-17 00:24:47,545 : INFO : topic #3 (0.353): 0.013*\"moral\" + 0.011*\"keith\" + 0.006*\"object\" + 0.005*\"caltech\" + 0.005*\"schneider\" + 0.004*\"anim\" + 0.004*\"allan\" + 0.004*\"cco\" + 0.004*\"jake\" + 0.004*\"boni\"\n",
- "2019-06-17 00:24:47,547 : INFO : topic #4 (0.380): 0.013*\"islam\" + 0.013*\"god\" + 0.007*\"livesei\" + 0.007*\"sgi\" + 0.007*\"jaeger\" + 0.006*\"muslim\" + 0.006*\"jon\" + 0.005*\"religion\" + 0.005*\"imag\" + 0.005*\"solntz\"\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:24:47,556 : INFO : W error diff: -0.05304441334403265\n",
- "2019-06-17 00:24:47,595 : INFO : PROGRESS: pass 2, at document #1000/2819\n",
- "2019-06-17 00:24:47,607 : INFO : W error diff: -0.6532464912217009\n",
- "2019-06-17 00:24:47,629 : INFO : PROGRESS: pass 2, at document #2000/2819\n",
- "2019-06-17 00:24:47,638 : INFO : W error diff: -0.5542774416923812\n",
- "2019-06-17 00:24:47,655 : INFO : PROGRESS: pass 2, at document #2819/2819\n",
- "2019-06-17 00:24:47,973 : INFO : L2 norm: 27.999892226543682\n",
- "2019-06-17 00:24:48,036 : INFO : topic #0 (0.343): 0.013*\"israel\" + 0.013*\"isra\" + 0.008*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.003*\"peac\" + 0.003*\"attack\" + 0.003*\"polici\" + 0.003*\"lebanon\"\n",
- "2019-06-17 00:24:48,038 : INFO : topic #1 (0.229): 0.010*\"space\" + 0.007*\"nasa\" + 0.005*\"access\" + 0.004*\"orbit\" + 0.004*\"pat\" + 0.004*\"launch\" + 0.004*\"digex\" + 0.004*\"gov\" + 0.004*\"graphic\" + 0.004*\"com\"\n",
- "2019-06-17 00:24:48,039 : INFO : topic #2 (0.283): 0.021*\"armenian\" + 0.010*\"turkish\" + 0.007*\"armenia\" + 0.006*\"turk\" + 0.006*\"argic\" + 0.006*\"serdar\" + 0.005*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.004*\"soviet\"\n",
- "2019-06-17 00:24:48,041 : INFO : topic #3 (0.347): 0.014*\"moral\" + 0.013*\"keith\" + 0.006*\"object\" + 0.006*\"caltech\" + 0.005*\"schneider\" + 0.004*\"allan\" + 0.004*\"cco\" + 0.004*\"anim\" + 0.003*\"jake\" + 0.003*\"natur\"\n",
- "2019-06-17 00:24:48,043 : INFO : topic #4 (0.365): 0.014*\"god\" + 0.013*\"islam\" + 0.007*\"livesei\" + 0.007*\"sgi\" + 0.007*\"jaeger\" + 0.006*\"muslim\" + 0.006*\"religion\" + 0.005*\"jon\" + 0.005*\"atheist\" + 0.005*\"atheism\"\n",
- "2019-06-17 00:24:48,050 : INFO : W error diff: 0.06399021760879364\n",
- "2019-06-17 00:24:48,090 : INFO : PROGRESS: pass 3, at document #1000/2819\n",
- "2019-06-17 00:24:48,103 : INFO : W error diff: -0.3678424933365889\n",
- "2019-06-17 00:24:48,123 : INFO : PROGRESS: pass 3, at document #2000/2819\n",
- "2019-06-17 00:24:48,131 : INFO : W error diff: -0.34924666183303543\n",
- "2019-06-17 00:24:48,148 : INFO : PROGRESS: pass 3, at document #2819/2819\n",
- "2019-06-17 00:24:48,460 : INFO : L2 norm: 27.991268049236886\n",
- "2019-06-17 00:24:48,518 : INFO : topic #0 (0.350): 0.014*\"israel\" + 0.013*\"isra\" + 0.008*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:48,520 : INFO : topic #1 (0.220): 0.010*\"space\" + 0.007*\"nasa\" + 0.005*\"access\" + 0.004*\"orbit\" + 0.004*\"launch\" + 0.004*\"pat\" + 0.004*\"gov\" + 0.004*\"com\" + 0.004*\"digex\" + 0.004*\"alaska\"\n",
- "2019-06-17 00:24:48,521 : INFO : topic #2 (0.282): 0.021*\"armenian\" + 0.010*\"turkish\" + 0.007*\"armenia\" + 0.007*\"turk\" + 0.006*\"argic\" + 0.006*\"serdar\" + 0.005*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.004*\"soviet\"\n",
- "2019-06-17 00:24:48,523 : INFO : topic #3 (0.351): 0.014*\"moral\" + 0.013*\"keith\" + 0.006*\"object\" + 0.006*\"caltech\" + 0.005*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.003*\"natur\" + 0.003*\"think\"\n",
- "2019-06-17 00:24:48,524 : INFO : topic #4 (0.364): 0.014*\"god\" + 0.013*\"islam\" + 0.007*\"sgi\" + 0.007*\"jaeger\" + 0.007*\"livesei\" + 0.006*\"muslim\" + 0.006*\"religion\" + 0.006*\"atheist\" + 0.005*\"atheism\" + 0.005*\"jon\"\n",
- "2019-06-17 00:24:48,531 : INFO : W error diff: 0.08877110840856872\n",
- "2019-06-17 00:24:48,570 : INFO : PROGRESS: pass 4, at document #1000/2819\n",
- "2019-06-17 00:24:48,584 : INFO : W error diff: -0.2446709705343757\n",
- "2019-06-17 00:24:48,605 : INFO : PROGRESS: pass 4, at document #2000/2819\n",
- "2019-06-17 00:24:48,613 : INFO : W error diff: -0.24931839405260803\n",
- "2019-06-17 00:24:48,635 : INFO : PROGRESS: pass 4, at document #2819/2819\n",
- "2019-06-17 00:24:49,056 : INFO : L2 norm: 27.98648818098989\n",
- "2019-06-17 00:24:49,116 : INFO : topic #0 (0.354): 0.014*\"israel\" + 0.013*\"isra\" + 0.008*\"arab\" + 0.007*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.003*\"attack\" + 0.003*\"lebanon\" + 0.003*\"polici\"\n",
- "2019-06-17 00:24:49,117 : INFO : topic #1 (0.209): 0.010*\"space\" + 0.007*\"nasa\" + 0.005*\"access\" + 0.004*\"orbit\" + 0.004*\"launch\" + 0.004*\"gov\" + 0.004*\"pat\" + 0.004*\"com\" + 0.004*\"alaska\" + 0.004*\"moon\"\n",
- "2019-06-17 00:24:49,119 : INFO : topic #2 (0.283): 0.021*\"armenian\" + 0.010*\"turkish\" + 0.007*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.006*\"serdar\" + 0.005*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.004*\"soviet\"\n",
- "2019-06-17 00:24:49,120 : INFO : topic #3 (0.356): 0.015*\"moral\" + 0.014*\"keith\" + 0.006*\"object\" + 0.006*\"caltech\" + 0.005*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.003*\"natur\" + 0.003*\"goal\"\n",
- "2019-06-17 00:24:49,122 : INFO : topic #4 (0.366): 0.014*\"god\" + 0.014*\"islam\" + 0.007*\"jaeger\" + 0.006*\"sgi\" + 0.006*\"livesei\" + 0.006*\"muslim\" + 0.006*\"atheist\" + 0.006*\"religion\" + 0.006*\"atheism\" + 0.005*\"rushdi\"\n",
- "2019-06-17 00:24:49,133 : INFO : W error diff: 0.0932956490045207\n",
- "2019-06-17 00:24:54,464 : INFO : CorpusAccumulator accumulated stats from 1000 documents\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"tm_metrics = pd.DataFrame(columns=['model', 'train_time', 'coherence', 'l2_norm', 'f1', 'topics'])\n",
"\n",
@@ -1175,21 +996,39 @@
" **fixed_params,\n",
" ),\n",
" 'lda',\n",
- " 1,\n",
+ " 0.1,\n",
")\n",
"row.update(get_metrics(\n",
" lda, test_corpus, train_corpus, y_train, y_test,\n",
"))\n",
"tm_metrics = tm_metrics.append(pd.Series(row), ignore_index=True)\n",
"\n",
+ "# LSI metrics\n",
+ "row = {}\n",
+ "row['model'] = 'lsi'\n",
+ "row['train_time'], row['mean_ram'], row['max_ram'], lsi = get_train_time_and_ram(\n",
+ " lambda: LsiModel(\n",
+ " corpus=train_corpus_tfidf,\n",
+ " num_topics=5,\n",
+ " id2word=dictionary,\n",
+ " chunksize=2000,\n",
+ " ),\n",
+ " 'lsi',\n",
+ " 0.1,\n",
+ ")\n",
+ "row.update(get_metrics(\n",
+ " lsi, test_corpus_tfidf, train_corpus_tfidf, y_train, y_test,\n",
+ "))\n",
+ "tm_metrics = tm_metrics.append(pd.Series(row), ignore_index=True)\n",
+ "\n",
"# Sklearn NMF metrics\n",
"row = {}\n",
"row['model'] = 'sklearn_nmf'\n",
- "train_dense_corpus_tfidf = matutils.corpus2dense(train_corpus_tfidf, len(dictionary)).T\n",
+ "train_csc_corpus_tfidf = matutils.corpus2csc(train_corpus_tfidf, len(dictionary)).T\n",
"row['train_time'], row['mean_ram'], row['max_ram'], sklearn_nmf = get_train_time_and_ram(\n",
- " lambda: SklearnNmf(n_components=5, random_state=42).fit(train_dense_corpus_tfidf),\n",
+ " lambda: SklearnNmf(n_components=5, random_state=42).fit(train_csc_corpus_tfidf),\n",
" 'sklearn_nmf',\n",
- " 1,\n",
+ " 0.1,\n",
")\n",
"row.update(get_metrics(\n",
" sklearn_nmf, test_corpus_tfidf, train_corpus_tfidf, y_train, y_test, dictionary,\n",
@@ -1206,7 +1045,7 @@
" **fixed_params\n",
" ),\n",
" 'gensim_nmf',\n",
- " 0.5,\n",
+ " 0.1,\n",
")\n",
"row.update(get_metrics(\n",
" gensim_nmf, test_corpus_tfidf, train_corpus_tfidf, y_train, y_test,\n",
@@ -1224,7 +1063,7 @@
},
{
"cell_type": "code",
- "execution_count": 18,
+ "execution_count": 21,
"metadata": {},
"outputs": [
{
@@ -1261,45 +1100,56 @@
"
\n",
" 0 | \n",
" lda | \n",
- " 00:00:14 | \n",
+ " 00:00:08.862000 | \n",
" -2.1054 | \n",
" - | \n",
" 0.7511 | \n",
- " 273 MB | \n",
- " 273 MB | \n",
+ " 366 MB | \n",
+ " 366 MB | \n",
"
\n",
" \n",
" 1 | \n",
+ " lsi | \n",
+ " 00:00:00.332000 | \n",
+ " -5.7010 | \n",
+ " 42.4642 | \n",
+ " 0.8587 | \n",
+ " 381 MB | \n",
+ " 379 MB | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
" sklearn_nmf | \n",
- " 00:00:04 | \n",
+ " 00:00:00.166000 | \n",
" -3.1835 | \n",
" 42.4759 | \n",
- " 0.7905 | \n",
- " 538 MB | \n",
- " 538 MB | \n",
+ " 0.7889 | \n",
+ " 378 MB | \n",
+ " 378 MB | \n",
"
\n",
" \n",
- " 2 | \n",
+ " 3 | \n",
" gensim_nmf | \n",
- " 00:00:03 | \n",
- " -4.0459 | \n",
- " 42.5486 | \n",
- " 0.8044 | \n",
- " 406 MB | \n",
- " 406 MB | \n",
+ " 00:00:00.954000 | \n",
+ " -4.1310 | \n",
+ " 42.5487 | \n",
+ " 0.8065 | \n",
+ " 379 MB | \n",
+ " 379 MB | \n",
"
\n",
" \n",
"\n",
""
],
"text/plain": [
- " model train_time coherence l2_norm f1 max_ram mean_ram\n",
- "0 lda 00:00:14 -2.1054 - 0.7511 273 MB 273 MB\n",
- "1 sklearn_nmf 00:00:04 -3.1835 42.4759 0.7905 538 MB 538 MB\n",
- "2 gensim_nmf 00:00:03 -4.0459 42.5486 0.8044 406 MB 406 MB"
+ " model train_time coherence l2_norm f1 max_ram mean_ram\n",
+ "0 lda 00:00:08.862000 -2.1054 - 0.7511 366 MB 366 MB\n",
+ "1 lsi 00:00:00.332000 -5.7010 42.4642 0.8587 381 MB 379 MB\n",
+ "2 sklearn_nmf 00:00:00.166000 -3.1835 42.4759 0.7889 378 MB 378 MB\n",
+ "3 gensim_nmf 00:00:00.954000 -4.1310 42.5487 0.8065 379 MB 379 MB"
]
},
- "execution_count": 18,
+ "execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
@@ -1314,9 +1164,10 @@
"source": [
"### Main insights\n",
"\n",
- "- Gensim NMF is **ridiculously fast** and leaves both LDA and Sklearn far behind in terms of training time and quality on downstream task (F1 score), though coherence is the lowest among all models.\n",
- "- Gensim NMF beats Sklearn NMF in RAM consumption, but L2 norm is a bit worse.\n",
- "- Gensim NMF consumes a bit more RAM than LDA."
+ "- LDA has the best coherence of all models.\n",
+ "- LSI has the best l2 norm and f1 performance on downstream task (it's factors aren't non-negative though).\n",
+ "- Gensim NMF, Sklearn NMF and LSI has a bit larger memory footprint than that of LDA.\n",
+ "- Gensim NMF, Sklearn NMF and LSI are much faster than LDA."
]
},
{
@@ -1335,7 +1186,7 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 22,
"metadata": {},
"outputs": [
{
@@ -1350,6 +1201,13 @@
"(3, '0.012*\"com\" + 0.010*\"israel\" + 0.009*\"bike\" + 0.006*\"isra\" + 0.006*\"dod\" + 0.005*\"like\" + 0.005*\"ride\" + 0.005*\"host\" + 0.005*\"nntp\" + 0.005*\"motorcycl\"')\n",
"(4, '0.011*\"god\" + 0.008*\"peopl\" + 0.007*\"think\" + 0.006*\"exist\" + 0.006*\"univers\" + 0.005*\"com\" + 0.005*\"believ\" + 0.005*\"islam\" + 0.005*\"moral\" + 0.005*\"christian\"')\n",
"\n",
+ "lsi:\n",
+ "(0, '0.157*\"armenian\" + 0.118*\"israel\" + 0.110*\"peopl\" + 0.110*\"isra\" + 0.105*\"space\" + 0.098*\"com\" + 0.097*\"god\" + 0.084*\"jew\" + 0.082*\"think\" + 0.081*\"turkish\"')\n",
+ "(1, '-0.476*\"armenian\" + -0.231*\"turkish\" + -0.157*\"armenia\" + -0.151*\"argic\" + -0.149*\"serdar\" + -0.145*\"turk\" + 0.128*\"space\" + -0.117*\"turkei\" + -0.111*\"genocid\" + 0.107*\"nasa\"')\n",
+ "(2, '0.295*\"israel\" + -0.291*\"armenian\" + 0.273*\"isra\" + 0.182*\"arab\" + 0.157*\"jew\" + -0.143*\"space\" + -0.134*\"turkish\" + -0.112*\"nasa\" + 0.106*\"jake\" + 0.103*\"boni\"')\n",
+ "(3, '0.274*\"keith\" + 0.252*\"moral\" + -0.235*\"israel\" + 0.213*\"god\" + -0.213*\"isra\" + 0.165*\"livesei\" + -0.143*\"arab\" + 0.123*\"sgi\" + 0.118*\"caltech\" + 0.114*\"islam\"')\n",
+ "(4, '0.240*\"henri\" + -0.215*\"bike\" + 0.210*\"space\" + 0.167*\"toronto\" + 0.158*\"nasa\" + 0.148*\"moral\" + 0.143*\"keith\" + -0.142*\"graphic\" + 0.128*\"alaska\" + 0.125*\"orbit\"')\n",
+ "\n",
"sklearn_nmf:\n",
"(0, '0.027*\"armenian\" + 0.013*\"turkish\" + 0.009*\"armenia\" + 0.009*\"argic\" + 0.009*\"serdar\" + 0.008*\"turk\" + 0.007*\"turkei\" + 0.006*\"genocid\" + 0.006*\"soviet\" + 0.006*\"zuma\"')\n",
"(1, '0.015*\"israel\" + 0.014*\"isra\" + 0.01*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.005*\"jake\" + 0.005*\"boni\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.004*\"adam\"')\n",
@@ -1359,10 +1217,10 @@
"\n",
"gensim_nmf:\n",
"(0, '0.015*\"israel\" + 0.014*\"isra\" + 0.009*\"arab\" + 0.008*\"jew\" + 0.005*\"palestinian\" + 0.004*\"lebanes\" + 0.004*\"peac\" + 0.004*\"attack\" + 0.004*\"lebanon\" + 0.003*\"polici\"')\n",
- "(1, '0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"gov\" + 0.003*\"pat\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"moon\"')\n",
- "(2, '0.023*\"armenian\" + 0.012*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"')\n",
- "(3, '0.017*\"moral\" + 0.016*\"keith\" + 0.008*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.006*\"allan\" + 0.006*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"')\n",
- "(4, '0.012*\"god\" + 0.011*\"islam\" + 0.006*\"jaeger\" + 0.005*\"sgi\" + 0.005*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"rushdi\"')\n"
+ "(1, '0.007*\"space\" + 0.005*\"nasa\" + 0.003*\"access\" + 0.003*\"orbit\" + 0.003*\"launch\" + 0.003*\"pat\" + 0.003*\"gov\" + 0.003*\"com\" + 0.002*\"alaska\" + 0.002*\"moon\"')\n",
+ "(2, '0.023*\"armenian\" + 0.011*\"turkish\" + 0.008*\"armenia\" + 0.007*\"argic\" + 0.007*\"turk\" + 0.007*\"serdar\" + 0.006*\"turkei\" + 0.005*\"greek\" + 0.005*\"genocid\" + 0.005*\"soviet\"')\n",
+ "(3, '0.016*\"moral\" + 0.015*\"keith\" + 0.007*\"object\" + 0.007*\"caltech\" + 0.006*\"schneider\" + 0.005*\"allan\" + 0.005*\"cco\" + 0.004*\"anim\" + 0.004*\"natur\" + 0.004*\"goal\"')\n",
+ "(4, '0.012*\"god\" + 0.012*\"islam\" + 0.006*\"jaeger\" + 0.006*\"sgi\" + 0.005*\"livesei\" + 0.005*\"muslim\" + 0.005*\"atheist\" + 0.005*\"religion\" + 0.005*\"atheism\" + 0.004*\"rushdi\"')\n"
]
}
],
@@ -1379,7 +1237,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "Subjectively, Gensim and Sklearn NMFs are on par with each other, LDA looks a bit worse."
+ "Subjectively, Gensim and Sklearn NMFs are on par with each other, LDA and LSI look a bit worse."
]
},
{
@@ -1395,12 +1253,12 @@
"source": [
"This section shows how to train an NMF model on a large text corpus, the entire English Wikipedia: **2.6 billion words, in 23.1 million article sections across 5 million Wikipedia articles**.\n",
"\n",
- "The data preprocessing takes a while, and we'll be comparing multiple models, so **reserve about FIXME hours** and some **20 GB of disk space** to go through the following notebook cells in full. You'll need `gensim>=3.7.1`, `numpy`, `tqdm`, `pandas`, `psutils`, `joblib` and `sklearn`."
+ "The data preprocessing takes a while, and we'll be comparing multiple models, so **reserve about 3 hours** and some **20 GB of disk space** to go through the following notebook cells in full. You'll need `gensim>=3.7.1`, `numpy`, `tqdm`, `pandas`, `psutils`, `joblib` and `sklearn`."
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
@@ -1450,66 +1308,9 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 24,
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- " Part 1/4 [==================================================] 100.0% 1950.0/1950.0MB downloaded\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 00:41:12,608 : INFO : Part 1/4 downloaded\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- " Part 2/4 [==================================================] 100.0% 1950.0/1950.0MB downloaded\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:00:31,485 : INFO : Part 2/4 downloaded\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- " Part 3/4 [==================================================] 100.0% 1950.0/1950.0MB downloaded\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:13:16,891 : INFO : Part 3/4 downloaded\n"
- ]
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- " Part 4/4 [==================================================] 100.0% 364.2/364.2MB downloaded\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:16:12,302 : INFO : Part 4/4 downloaded\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"data = gensim.downloader.load(\"wiki-english-20171001\")"
]
@@ -1523,16 +1324,9 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 25,
"metadata": {},
"outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:16:21,175 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
{
"name": "stdout",
"output_type": "stream",
@@ -1594,7 +1388,7 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
@@ -1619,7 +1413,7 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 27,
"metadata": {
"scrolled": true
},
@@ -1628,224027 +1422,171 @@
"name": "stderr",
"output_type": "stream",
"text": [
- "2019-06-17 01:16:21,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 01:16:21,224 : INFO : adding document #0 to Dictionary(0 unique tokens: [])\n",
- "2019-06-17 01:17:21,409 : INFO : adding document #10000 to Dictionary(442398 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:18:15,272 : INFO : adding document #20000 to Dictionary(636185 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:18:56,152 : INFO : adding document #30000 to Dictionary(771962 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:19:33,810 : INFO : adding document #40000 to Dictionary(892775 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:20:00,867 : INFO : adding document #50000 to Dictionary(973514 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:20:18,101 : INFO : adding document #60000 to Dictionary(993992 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:20:31,718 : INFO : adding document #70000 to Dictionary(1011285 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:20:45,385 : INFO : adding document #80000 to Dictionary(1027195 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:21:13,204 : INFO : adding document #90000 to Dictionary(1095465 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:21:49,573 : INFO : adding document #100000 to Dictionary(1195579 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:22:22,655 : INFO : adding document #110000 to Dictionary(1285684 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:22:53,813 : INFO : adding document #120000 to Dictionary(1360876 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:23:24,132 : INFO : adding document #130000 to Dictionary(1431880 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:23:55,805 : INFO : adding document #140000 to Dictionary(1507877 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:24:25,125 : INFO : adding document #150000 to Dictionary(1592593 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:24:54,108 : INFO : adding document #160000 to Dictionary(1669698 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:25:21,122 : INFO : adding document #170000 to Dictionary(1736105 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:25:47,371 : INFO : adding document #180000 to Dictionary(1788263 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:26:11,543 : INFO : adding document #190000 to Dictionary(1844205 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:26:34,760 : INFO : adding document #200000 to Dictionary(1899237 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:26:57,749 : INFO : adding document #210000 to Dictionary(1950073 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:27:21,112 : INFO : adding document #220000 to Dictionary(1993894 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:27:45,346 : INFO : discarding 41874 tokens: [('kombibahn', 1), ('kuppelbare', 1), ('mgfj', 1), ('ngongping', 1), ('pendelbahn', 1), ('ptopgondola', 1), ('pulsé', 1), ('pulsée', 1), ('sesselbahn', 1), ('tscdortmx', 1)]...\n",
- "2019-06-17 01:27:45,347 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 230000 (=100.0%) documents\n",
- "2019-06-17 01:27:47,638 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:27:47,690 : INFO : adding document #230000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:28:11,946 : INFO : discarding 49167 tokens: [('kiggelaria', 1), ('laetia', 1), ('lindackeria', 1), ('lunania', 1), ('macrohasseltia', 1), ('mocquerysia', 1), ('neopringlea', 1), ('neoptychocarpus', 1), ('olmediella', 1), ('oncoba', 1)]...\n",
- "2019-06-17 01:28:11,947 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 240000 (=100.0%) documents\n",
- "2019-06-17 01:28:14,122 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:28:14,166 : INFO : adding document #240000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:28:37,940 : INFO : discarding 48135 tokens: [('sesci', 1), ('ºbis', 1), ('bechtolt', 1), ('bureker', 1), ('maletis', 1), ('mastbaum', 1), ('mergertech', 1), ('obipso', 1), ('olvis', 1), ('seemel', 1)]...\n",
- "2019-06-17 01:28:37,941 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 250000 (=100.0%) documents\n",
- "2019-06-17 01:28:40,198 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:28:40,244 : INFO : adding document #250000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:03,771 : INFO : discarding 48722 tokens: [('populifolium', 1), ('pterochaetum', 1), ('puteale', 1), ('readeri', 1), ('retortum', 1), ('rogersianum', 1), ('scitulum', 1), ('scutellifolium', 1), ('semicalvum', 1), ('semifertile', 1)]...\n",
- "2019-06-17 01:29:03,772 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 260000 (=100.0%) documents\n",
- "2019-06-17 01:29:05,928 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:05,971 : INFO : adding document #260000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:27,980 : INFO : discarding 42577 tokens: [('iofetamine', 1), ('auhirsch', 1), ('austrokoffer', 1), ('hellschwarzer', 1), ('landvermessung', 1), ('cityquartier', 1), ('domaquarée', 1), ('vxla', 1), ('grovare', 1), ('shitterton', 1)]...\n",
- "2019-06-17 01:29:27,981 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 270000 (=100.0%) documents\n",
- "2019-06-17 01:29:30,222 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:30,268 : INFO : adding document #270000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:52,367 : INFO : discarding 46854 tokens: [('spivvy', 1), ('marketingland', 1), ('yourcompany', 1), ('yourgmail', 1), ('youroffice', 1), ('dousseau', 1), ('andomeda', 1), ('myfabada', 1), ('sunnyfabada', 1), ('alleben', 1)]...\n",
- "2019-06-17 01:29:52,368 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 280000 (=100.0%) documents\n",
- "2019-06-17 01:29:54,568 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:29:54,612 : INFO : adding document #280000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:30:15,963 : INFO : discarding 49731 tokens: [('tankarna', 1), ('tanngtied', 1), ('tiedadzim', 1), ('tiedam', 1), ('tjouta', 1), ('träden', 1), ('täb', 1), ('täivest', 1), ('tälle', 1), ('tåckå', 1)]...\n",
- "2019-06-17 01:30:15,964 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 290000 (=100.0%) documents\n",
- "2019-06-17 01:30:18,267 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:30:18,320 : INFO : adding document #290000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:30:39,948 : INFO : discarding 47548 tokens: [('rudhrabhatta', 1), ('sadâwt', 1), ('sahityarathi', 1), ('samayadant', 1), ('sehrampur', 1), ('shahirs', 1), ('shantipurana', 1), ('shirvadakar', 1), ('streevada', 1), ('swabhab', 1)]...\n",
- "2019-06-17 01:30:39,949 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 300000 (=100.0%) documents\n",
- "2019-06-17 01:30:42,144 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:30:42,188 : INFO : adding document #300000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:02,720 : INFO : discarding 42701 tokens: [('lanveoc', 1), ('lcoations', 1), ('mailines', 1), ('meureaux', 1), ('missies', 1), ('neupetritor', 1), ('pontabault', 1), ('rapopo', 1), ('recconoitre', 1), ('salisburg', 1)]...\n",
- "2019-06-17 01:31:02,721 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 310000 (=100.0%) documents\n",
- "2019-06-17 01:31:05,011 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:05,057 : INFO : adding document #310000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:24,696 : INFO : discarding 49755 tokens: [('petrivy', 1), ('vwap', 1), ('xbinop', 1), ('follyfest', 1), ('portwell', 1), ('cofounds', 1), ('deathtongue', 1), ('dumplins', 1), ('hsolver', 1), ('hycreate', 1)]...\n",
- "2019-06-17 01:31:24,697 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 320000 (=100.0%) documents\n",
- "2019-06-17 01:31:26,853 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:26,899 : INFO : adding document #320000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:47,177 : INFO : discarding 46968 tokens: [('erunsuto', 1), ('farmani', 1), ('fotogalería', 1), ('glanzlichter', 1), ('hāsu', 1), ('imaginare', 1), ('karā', 1), ('kslnischer', 1), ('kunstambachten', 1), ('kurieishon', 1)]...\n",
- "2019-06-17 01:31:47,178 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 330000 (=100.0%) documents\n",
- "2019-06-17 01:31:49,432 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:31:49,478 : INFO : adding document #330000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:08,558 : INFO : discarding 37769 tokens: [('tagless', 1), ('typechecked', 1), ('unifiability', 1), ('grgurinović', 1), ('identronix', 1), ('doomsbury', 1), ('gwdion', 1), ('ravenwind', 1), ('agavat', 1), ('baltacilar', 1)]...\n",
- "2019-06-17 01:32:08,559 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 340000 (=100.0%) documents\n",
- "2019-06-17 01:32:10,705 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:10,750 : INFO : adding document #340000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:29,742 : INFO : discarding 37784 tokens: [('pelire', 1), ('pisḳe', 1), ('shibbole', 1), ('tosafistic', 1), ('tosafos', 1), ('yebamot', 1), ('zebaḥim', 1), ('zeḳenim', 1), ('גריינץ', 1), ('ḥiẓoniyyot', 1)]...\n",
- "2019-06-17 01:32:29,743 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 350000 (=100.0%) documents\n",
- "2019-06-17 01:32:32,018 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:32,065 : INFO : adding document #350000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:52,512 : INFO : discarding 38303 tokens: [('intomvu', 1), ('inyege', 1), ('inzogera', 1), ('iyebe', 1), ('pierreh', 1), ('umudende', 1), ('umuheto', 1), ('umurya', 1), ('umwironge', 1), ('leidenheimer', 1)]...\n",
- "2019-06-17 01:32:52,513 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 360000 (=100.0%) documents\n",
- "2019-06-17 01:32:54,686 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:32:54,731 : INFO : adding document #360000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:14,158 : INFO : discarding 36885 tokens: [('herzemaere', 1), ('kastellan', 1), ('meliur', 1), ('partenopier', 1), ('partonopier', 1), ('schniede', 1), ('arhoppers', 1), ('feezor', 1), ('aghven', 1), ('arank', 1)]...\n",
- "2019-06-17 01:33:14,159 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 370000 (=100.0%) documents\n",
- "2019-06-17 01:33:16,420 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:16,467 : INFO : adding document #370000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:35,541 : INFO : discarding 36150 tokens: [('popset', 1), ('blumschein', 1), ('exceptionelles', 1), ('messerchmitt', 1), ('renové', 1), ('rouvez', 1), ('methylpropanoyl', 1), ('aguafuerte', 1), ('arbolucu', 1), ('barítone', 1)]...\n",
- "2019-06-17 01:33:35,542 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 380000 (=100.0%) documents\n",
- "2019-06-17 01:33:37,718 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:37,764 : INFO : adding document #380000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:56,928 : INFO : discarding 38389 tokens: [('gemmecke', 1), ('hjulstad', 1), ('jonsvannsveien', 1), ('rinnanbanden', 1), ('admiralsrang', 1), ('obderrm', 1), ('werdegänge', 1), ('bbeb', 1), ('ebookwise', 1), ('solarlok', 1)]...\n",
- "2019-06-17 01:33:56,928 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 390000 (=100.0%) documents\n",
- "2019-06-17 01:33:59,189 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:33:59,237 : INFO : adding document #390000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:34:18,381 : INFO : discarding 38469 tokens: [('quantitiy', 1), ('warraba', 1), ('wiganora', 1), ('wolger', 1), ('wollongongy', 1), ('woniora', 1), ('worinora', 1), ('calcolatore', 1), ('calculateur', 1), ('電卓', 1)]...\n",
- "2019-06-17 01:34:18,381 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 400000 (=100.0%) documents\n",
- "2019-06-17 01:34:20,550 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:34:20,595 : INFO : adding document #400000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:34:38,577 : INFO : discarding 36935 tokens: [('壓軸拉闊音樂會李克勤x容祖兒', 1), ('好事多為', 1), ('姚珏', 1), ('容祖兒perfect', 1), ('容祖兒x古巨基', 1), ('容祖兒x草蜢', 1), ('容祖兒x陳奕迅', 1), ('容祖兒x黃耀明', 1), ('容祖兒不容錯失音樂會', 1), ('容祖兒夏水禮音樂會', 1)]...\n",
- "2019-06-17 01:34:38,578 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 410000 (=100.0%) documents\n",
- "2019-06-17 01:34:40,827 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:34:40,875 : INFO : adding document #410000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:34:58,947 : INFO : discarding 42040 tokens: [('munchnone', 1), ('nickon', 1), ('octacirculene', 1), ('oxoolean', 1), ('penguinone', 1), ('pentacyclo', 1), ('peppsi', 1), ('periplanarity', 1), ('periplanone', 1), ('prismanean', 1)]...\n",
- "2019-06-17 01:34:58,948 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 420000 (=100.0%) documents\n",
- "2019-06-17 01:35:01,119 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:35:01,167 : INFO : adding document #420000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:35:19,545 : INFO : discarding 41460 tokens: [('âqâye', 1), ('libagf', 1), ('npcdens', 1), ('ruwpa', 1), ('undersmoothed', 1), ('evangelicism', 1), ('neillian', 1), ('rousseauan', 1), ('rousseauean', 1), ('flocko', 1)]...\n",
- "2019-06-17 01:35:19,545 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 430000 (=100.0%) documents\n",
- "2019-06-17 01:35:21,801 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:35:21,850 : INFO : adding document #430000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:35:39,379 : INFO : discarding 34896 tokens: [('blinge', 1), ('bliže', 1), ('borisavljević', 1), ('danju', 1), ('dravco', 1), ('gazdarica', 1), ('grbavice', 1), ('kristinom', 1), ('lokice', 1), ('lumbrelom', 1)]...\n",
- "2019-06-17 01:35:39,380 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 440000 (=100.0%) documents\n",
- "2019-06-17 01:35:41,541 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:35:41,588 : INFO : adding document #440000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:00,655 : INFO : discarding 41599 tokens: [('mapalpalna', 1), ('mapalpalnay', 1), ('maringot', 1), ('marutak', 1), ('matdem', 1), ('melag', 1), ('melanting', 1), ('nalingwanan', 1), ('nanengne', 1), ('nanengneng', 1)]...\n",
- "2019-06-17 01:36:00,656 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 450000 (=100.0%) documents\n",
- "2019-06-17 01:36:02,898 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:02,948 : INFO : adding document #450000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:21,710 : INFO : discarding 40297 tokens: [('onlywould', 1), ('paralle', 1), ('phiefer', 1), ('sdeis', 1), ('serviceat', 1), ('yhat', 1), ('ardillo', 1), ('cenizaro', 1), ('dilodendron', 1), ('feuilleea', 1)]...\n",
- "2019-06-17 01:36:21,710 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 460000 (=100.0%) documents\n",
- "2019-06-17 01:36:23,910 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:23,958 : INFO : adding document #460000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:42,873 : INFO : discarding 40142 tokens: [('oguntayo', 1), ('omosebi', 1), ('osibanjo', 1), ('safinatu', 1), ('sidikatu', 1), ('unguwar', 1), ('zulai', 1), ('zulaihat', 1), ('acreditată', 1), ('datacheck', 1)]...\n",
- "2019-06-17 01:36:42,874 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 470000 (=100.0%) documents\n",
- "2019-06-17 01:36:45,178 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:36:45,227 : INFO : adding document #470000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:03,908 : INFO : discarding 38422 tokens: [('greadaíg', 1), ('hadap', 1), ('heathraimh', 1), ('incliing', 1), ('iompaíg', 1), ('iompraígh', 1), ('iompó', 1), ('isteach', 1), ('istinctness', 1), ('jadikan', 1)]...\n",
- "2019-06-17 01:37:03,909 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 480000 (=100.0%) documents\n",
- "2019-06-17 01:37:06,082 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:06,137 : INFO : adding document #480000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:23,759 : INFO : discarding 35508 tokens: [('元老', 1), ('出汁', 1), ('切り紙', 1), ('印籠', 1), ('味醂', 1), ('小豆', 1), ('川柳', 1), ('左様なら', 1), ('巻物', 1), ('布団', 1)]...\n",
- "2019-06-17 01:37:23,759 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 490000 (=100.0%) documents\n",
- "2019-06-17 01:37:26,033 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:26,082 : INFO : adding document #490000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:44,041 : INFO : discarding 37984 tokens: [('roßauer', 1), ('schwedenplatz', 1), ('thaliastraße', 1), ('vorgartenstraße', 1), ('zieglergasse', 1), ('allwight', 1), ('fightng', 1), ('viikingit', 1), ('arkwin', 1), ('atvc', 1)]...\n",
- "2019-06-17 01:37:44,042 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 500000 (=100.0%) documents\n",
- "2019-06-17 01:37:46,229 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:37:46,277 : INFO : adding document #500000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:03,449 : INFO : discarding 35424 tokens: [('pighín', 1), ('yayed', 1), ('stampolidis', 1), ('amaldoss', 1), ('gunnthorsdottir', 1), ('namatame', 1), ('shikarnya', 1), ('afrozi', 1), ('bruysten', 1), ('forostenko', 1)]...\n",
- "2019-06-17 01:38:03,450 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 510000 (=100.0%) documents\n",
- "2019-06-17 01:38:05,719 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:05,769 : INFO : adding document #510000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:23,312 : INFO : discarding 40650 tokens: [('rettificazione', 1), ('soluzione', 1), ('erukhim', 1), ('izucheniju', 1), ('jazyku', 1), ('jochel', 1), ('jukagir', 1), ('jukagirskij', 1), ('jukagirsko', 1), ('jukagirskogo', 1)]...\n",
- "2019-06-17 01:38:23,313 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 520000 (=100.0%) documents\n",
- "2019-06-17 01:38:25,480 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:25,528 : INFO : adding document #520000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:43,793 : INFO : discarding 37898 tokens: [('guillerval', 1), ('leudeville', 1), ('mauchamps', 1), ('mespuits', 1), ('moigny', 1), ('moulineux', 1), ('mérobert', 1), ('nainville', 1), ('pecqueuse', 1), ('puiselet', 1)]...\n",
- "2019-06-17 01:38:43,793 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 530000 (=100.0%) documents\n",
- "2019-06-17 01:38:46,105 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:38:46,156 : INFO : adding document #530000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:03,978 : INFO : discarding 36655 tokens: [('malokha', 1), ('sirkeerhead', 1), ('cheetahmail', 1), ('consumerinfo', 1), ('findget', 1), ('garlik', 1), ('hyperspecific', 1), ('intelliscore', 1), ('interatividade', 1), ('rentalbureau', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:39:03,979 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 540000 (=100.0%) documents\n",
- "2019-06-17 01:39:06,194 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:06,247 : INFO : adding document #540000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:23,322 : INFO : discarding 37087 tokens: [('kdsh', 1), ('kdve', 1), ('kdxx', 1), ('kedc', 1), ('kefh', 1), ('kejc', 1), ('kejs', 1), ('kelg', 1), ('kennelwood', 1), ('keoe', 1)]...\n",
- "2019-06-17 01:39:23,323 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 550000 (=100.0%) documents\n",
- "2019-06-17 01:39:25,637 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:25,690 : INFO : adding document #550000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:42,919 : INFO : discarding 38697 tokens: [('packagekellogg', 1), ('raceforward', 1), ('strawss', 1), ('toppas', 1), ('zimz', 1), ('farcey', 1), ('owrras', 1), ('ratcave', 1), ('ratfan', 1), ('ratphone', 1)]...\n",
- "2019-06-17 01:39:42,919 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 560000 (=100.0%) documents\n",
- "2019-06-17 01:39:45,123 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:39:45,174 : INFO : adding document #560000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:01,093 : INFO : discarding 36037 tokens: [('scoptician', 1), ('theoam', 1), ('vaopticians', 1), ('gobarrow', 1), ('kuddles', 1), ('rockmoor', 1), ('steiden', 1), ('valuetime', 1), ('dapg', 1), ('defago', 1)]...\n",
- "2019-06-17 01:40:01,094 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 570000 (=100.0%) documents\n",
- "2019-06-17 01:40:03,386 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:03,437 : INFO : adding document #570000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:19,674 : INFO : discarding 37349 tokens: [('adygheгъ', 1), ('adygheгъу', 1), ('adygheгь', 1), ('adygheд', 1), ('adygheдж', 1), ('adygheдз', 1), ('adygheдзу', 1), ('adygheе', 1), ('adygheж', 1), ('adygheжъ', 1)]...\n",
- "2019-06-17 01:40:19,674 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 580000 (=100.0%) documents\n",
- "2019-06-17 01:40:21,866 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:21,917 : INFO : adding document #580000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:38,280 : INFO : discarding 35398 tokens: [('turnaia', 1), ('krakaudorf', 1), ('krakauschatten', 1), ('appanah', 1), ('assone', 1), ('hakien', 1), ('jioi', 1), ('sewtohul', 1), ('shivratree', 1), ('unnuth', 1)]...\n",
- "2019-06-17 01:40:38,281 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 590000 (=100.0%) documents\n",
- "2019-06-17 01:40:40,570 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:40,621 : INFO : adding document #590000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:56,734 : INFO : discarding 31640 tokens: [('kojevnikov', 1), ('schecters', 1), ('astriphytum', 1), ('prismaticum', 1), ('quadricostatum', 1), ('tulense', 1), ('cachiyacuy', 1), ('canaanimys', 1), ('caviocricetus', 1), ('contamanensis', 1)]...\n",
- "2019-06-17 01:40:56,735 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 600000 (=100.0%) documents\n",
- "2019-06-17 01:40:58,932 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:40:58,982 : INFO : adding document #600000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:14,789 : INFO : discarding 32552 tokens: [('emmènerai', 1), ('respirer', 1), ('amtrust', 1), ('bjorgolfsson', 1), ('buzzd', 1), ('eztxtmsg', 1), ('froewiss', 1), ('jurevics', 1), ('profesoor', 1), ('saltconference', 1)]...\n",
- "2019-06-17 01:41:14,789 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 610000 (=100.0%) documents\n",
- "2019-06-17 01:41:17,089 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:17,141 : INFO : adding document #610000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:33,921 : INFO : discarding 39159 tokens: [('maloòngi', 1), ('monokituba', 1), ('munukituba', 1), ('nkutama', 1), ('nlemvo', 1), ('nzombie', 1), ('redemptoriste', 1), ('zoombo', 1), ('banuqa', 1), ('ghatrif', 1)]...\n",
- "2019-06-17 01:41:33,921 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 620000 (=100.0%) documents\n",
- "2019-06-17 01:41:36,124 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:36,175 : INFO : adding document #620000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:52,381 : INFO : discarding 35348 tokens: [('seov', 1), ('ampka', 1), ('ampkalpha', 1), ('ampkk', 1), ('camkk', 1), ('glucopenia', 1), ('pparalpha', 1), ('snrk', 1), ('ubiquitinations', 1), ('anddave', 1)]...\n",
- "2019-06-17 01:41:52,382 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 630000 (=100.0%) documents\n",
- "2019-06-17 01:41:54,673 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:41:54,726 : INFO : adding document #630000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:11,004 : INFO : discarding 34635 tokens: [('capv', 1), ('chaleyssin', 1), ('chambalud', 1), ('champagnier', 1), ('chantesse', 1), ('charantonnay', 1), ('charnècles', 1), ('chatelans', 1), ('chimilin', 1), ('chirens', 1)]...\n",
- "2019-06-17 01:42:11,005 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 640000 (=100.0%) documents\n",
- "2019-06-17 01:42:13,215 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:13,264 : INFO : adding document #640000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:28,991 : INFO : discarding 32752 tokens: [('ebbertt', 1), ('wyandota', 1), ('blaidd', 1), ('matthewrhys', 1), ('morfilod', 1), ('arenera', 1), ('galgal', 1), ('galgalim', 1), ('galgallim', 1), ('paytanim', 1)]...\n",
- "2019-06-17 01:42:28,992 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 650000 (=100.0%) documents\n",
- "2019-06-17 01:42:31,284 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:31,335 : INFO : adding document #650000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:46,863 : INFO : discarding 34143 tokens: [('adjutans', 1), ('onderofficier', 1), ('resaldar', 1), ('dailynebraskan', 1), ('halfaskan', 1), ('shattil', 1), ('juridisction', 1), ('vohrah', 1), ('chronometree', 1), ('dearqe', 1)]...\n",
- "2019-06-17 01:42:46,864 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 660000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:42:49,067 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:42:49,117 : INFO : adding document #660000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:04,726 : INFO : discarding 35656 tokens: [('kantatālavya', 1), ('kanthya', 1), ('kantōsthya', 1), ('lunthita', 1), ('mahāprānam', 1), ('mahāprāṇam', 1), ('niyamāvalī', 1), ('nādam', 1), ('prayatnams', 1), ('pārśvika', 1)]...\n",
- "2019-06-17 01:43:04,727 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 670000 (=100.0%) documents\n",
- "2019-06-17 01:43:07,050 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:07,105 : INFO : adding document #670000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:21,419 : INFO : discarding 31413 tokens: [('econbrowser', 1), ('mieczkowski', 1), ('pouzère', 1), ('fodem', 1), ('ouangolé', 1), ('kittrdge', 1), ('overreacher', 1), ('zarudnaya', 1), ('hüther', 1), ('iwkoeln', 1)]...\n",
- "2019-06-17 01:43:21,420 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 680000 (=100.0%) documents\n",
- "2019-06-17 01:43:23,634 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:23,686 : INFO : adding document #680000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:38,621 : INFO : discarding 35342 tokens: [('percp', 1), ('photoresistance', 1), ('prozyme', 1), ('pyridyloxazole', 1), ('rpepercp', 1), ('squaraines', 1), ('surelight', 1), ('sytox', 1), ('tagcfp', 1), ('tagfp', 1)]...\n",
- "2019-06-17 01:43:38,622 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 690000 (=100.0%) documents\n",
- "2019-06-17 01:43:40,909 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:40,961 : INFO : adding document #690000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:56,848 : INFO : discarding 42320 tokens: [('智辯学園', 1), ('gymraes', 1), ('mornewick', 1), ('teressia', 1), ('yansouni', 1), ('backc', 1), ('entrc', 1), ('pointur', 1), ('汉口', 1), ('gäddtarmen', 1)]...\n",
- "2019-06-17 01:43:56,849 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 700000 (=100.0%) documents\n",
- "2019-06-17 01:43:59,064 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:43:59,115 : INFO : adding document #700000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:13,569 : INFO : discarding 29672 tokens: [('falcine', 1), ('subfalcine', 1), ('transcalvarial', 1), ('transfalcine', 1), ('transforaminal', 1), ('unshipping', 1), ('birkedahl', 1), ('leoppard', 1), ('paulburlison', 1), ('theband', 1)]...\n",
- "2019-06-17 01:44:13,569 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 710000 (=100.0%) documents\n",
- "2019-06-17 01:44:15,862 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:15,916 : INFO : adding document #710000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:32,012 : INFO : discarding 32435 tokens: [('chspanthers', 1), ('karkador', 1), ('trinomys', 1), ('gadss', 1), ('geoluts', 1), ('geosars', 1), ('leoluts', 1), ('leosars', 1), ('meoluts', 1), ('meosars', 1)]...\n",
- "2019-06-17 01:44:32,013 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 720000 (=100.0%) documents\n",
- "2019-06-17 01:44:34,207 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:34,259 : INFO : adding document #720000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:48,941 : INFO : discarding 51039 tokens: [('hanespe', 1), ('onecote', 1), ('innie', 1), ('baroeuil', 1), ('beaudotes', 1), ('bousquets', 1), ('chenadec', 1), ('dzerahovic', 1), ('gueant', 1), ('kabtane', 1)]...\n",
- "2019-06-17 01:44:48,942 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 730000 (=100.0%) documents\n",
- "2019-06-17 01:44:51,237 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:44:51,291 : INFO : adding document #730000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:05,575 : INFO : discarding 31179 tokens: [('electrofolk', 1), ('rockmuiology', 1), ('你安安靜靜地躲起來', 1), ('掀起', 1), ('青春文化', 1), ('hirels', 1), ('sdobwas', 1), ('bergthorson', 1), ('delarossa', 1), ('ocett', 1)]...\n",
- "2019-06-17 01:45:05,576 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 740000 (=100.0%) documents\n",
- "2019-06-17 01:45:07,780 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:07,832 : INFO : adding document #740000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:22,650 : INFO : discarding 33414 tokens: [('bethnall', 1), ('byeways', 1), ('canwyke', 1), ('costardemonger', 1), ('costerdom', 1), ('costermongering', 1), ('cytezene', 1), ('ecslop', 1), ('elbat', 1), ('hucster', 1)]...\n",
- "2019-06-17 01:45:22,651 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 750000 (=100.0%) documents\n",
- "2019-06-17 01:45:24,934 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:24,988 : INFO : adding document #750000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:39,530 : INFO : discarding 32926 tokens: [('запечатленная', 1), ('кальсэ', 1), ('кудо', 1), ('кудосо', 1), ('мокшанских', 1), ('мордовской', 1), ('образцов', 1), ('ойсэ', 1), ('писатели', 1), ('писательде', 1)]...\n",
- "2019-06-17 01:45:39,531 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 760000 (=100.0%) documents\n",
- "2019-06-17 01:45:41,788 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:41,839 : INFO : adding document #760000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:45:58,251 : INFO : discarding 34561 tokens: [('日興上人', 1), ('日蓮一期の弘法', 1), ('日蓮一期弘法付嘱書', 1), ('本門弘通の大導師', 1), ('民部日向', 1), ('池上相承', 1), ('興門派', 1), ('身延山付嘱書', 1), ('cruzoe', 1), ('esturgeon', 1)]...\n",
- "2019-06-17 01:45:58,252 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 770000 (=100.0%) documents\n",
- "2019-06-17 01:46:00,567 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:00,620 : INFO : adding document #770000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:16,235 : INFO : discarding 34672 tokens: [('relijin', 1), ('rintchen', 1), ('sadangayoga', 1), ('samantashri', 1), ('sekkodesha', 1), ('tcheu', 1), ('trimondi', 1), ('tsagiin', 1), ('tsarpa', 1), ('tsenshab', 1)]...\n",
- "2019-06-17 01:46:16,236 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 780000 (=100.0%) documents\n",
- "2019-06-17 01:46:18,482 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:46:18,533 : INFO : adding document #780000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:33,596 : INFO : discarding 31598 tokens: [('afrofemcentrism', 1), ('afrofemcentrist', 1), ('mexciana', 1), ('michasel', 1), ('pláticas', 1), ('printwork', 1), ('tesfagiogis', 1), ('tesfagiorgis', 1), ('udderly', 1), ('cripp', 1)]...\n",
- "2019-06-17 01:46:33,597 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 790000 (=100.0%) documents\n",
- "2019-06-17 01:46:35,926 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:35,980 : INFO : adding document #790000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:51,536 : INFO : discarding 30281 tokens: [('govindaa', 1), ('namadhari', 1), ('padakke', 1), ('thimmappa', 1), ('thimmappana', 1), ('osling', 1), ('neorim', 1), ('oberältester', 1), ('romineli', 1), ('rominow', 1)]...\n",
- "2019-06-17 01:46:51,536 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 800000 (=100.0%) documents\n",
- "2019-06-17 01:46:53,736 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:46:53,787 : INFO : adding document #800000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:08,709 : INFO : discarding 34161 tokens: [('ܦܝܠܝܦܣܝ', 1), ('ܦܪܟܣܣ', 1), ('ܦܫܝܛܬܐ', 1), ('ܩܕܡ', 1), ('ܩܕܡܝܬܐ', 1), ('ܩܘܠ', 1), ('ܩܘܪ', 1), ('ܪܐܪܡܝܐ', 1), ('ܪܒܬܐ', 1), ('ܬܠܐ', 1)]...\n",
- "2019-06-17 01:47:08,709 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 810000 (=100.0%) documents\n",
- "2019-06-17 01:47:11,005 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:11,058 : INFO : adding document #810000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:25,278 : INFO : discarding 29896 tokens: [('gusseted', 1), ('lxwxg', 1), ('mypos', 1), ('sheslow', 1), ('thallassia', 1), ('citcom', 1), ('citcoms', 1), ('flexibily', 1), ('gurnis', 1), ('rheologies', 1)]...\n",
- "2019-06-17 01:47:25,279 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 820000 (=100.0%) documents\n",
- "2019-06-17 01:47:27,472 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:27,529 : INFO : adding document #820000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:43,001 : INFO : discarding 34492 tokens: [('sogizukuri', 1), ('sujihiki', 1), ('takohiki', 1), ('udonkiri', 1), ('usuzukuri', 1), ('watetsu', 1), ('蒸し器', 1), ('蒸籠', 1), ('strigilosa', 1), ('kurouchi', 1)]...\n",
- "2019-06-17 01:47:43,002 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 830000 (=100.0%) documents\n",
- "2019-06-17 01:47:45,331 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:45,385 : INFO : adding document #830000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:47:59,529 : INFO : discarding 34964 tokens: [('jarwali', 1), ('karhani', 1), ('malsiani', 1), ('malsiyani', 1), ('mashafi', 1), ('mehroom', 1), ('muzaffarnagari', 1), ('nazish', 1), ('pandoravi', 1), ('patialvi', 1)]...\n",
- "2019-06-17 01:47:59,530 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 840000 (=100.0%) documents\n",
- "2019-06-17 01:48:01,753 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:01,804 : INFO : adding document #840000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:16,181 : INFO : discarding 30698 tokens: [('鮑紹雄', 1), ('flocomponents', 1), ('rusport', 1), ('sungazette', 1), ('aflua', 1), ('carriss', 1), ('foletta', 1), ('hiskins', 1), ('pleass', 1), ('sanneman', 1)]...\n",
- "2019-06-17 01:48:16,182 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 850000 (=100.0%) documents\n",
- "2019-06-17 01:48:18,462 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:18,516 : INFO : adding document #850000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:33,539 : INFO : discarding 32289 tokens: [('powerface', 1), ('bangtail', 1), ('orhlin', 1), ('roscrae', 1), ('singingsuccess', 1), ('nmhistorymuseum', 1), ('segesser', 1), ('sistaca', 1), ('atchee', 1), ('wyatchew', 1)]...\n",
- "2019-06-17 01:48:33,540 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 860000 (=100.0%) documents\n",
- "2019-06-17 01:48:35,749 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:35,800 : INFO : adding document #860000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:50,351 : INFO : discarding 33731 tokens: [('iwave', 1), ('kazeon', 1), ('morevrp', 1), ('rainfinity', 1), ('scaleio', 1), ('syncplicity', 1), ('tablus', 1), ('verid', 1), ('virtustream', 1), ('voyence', 1)]...\n",
- "2019-06-17 01:48:50,352 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 870000 (=100.0%) documents\n",
- "2019-06-17 01:48:52,624 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:48:52,679 : INFO : adding document #870000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:07,111 : INFO : discarding 33782 tokens: [('pedanios', 1), ('rhizomati', 1), ('rhizomatist', 1), ('sliatriceo', 1), ('soginata', 1), ('sturmenti', 1), ('subtilatum', 1), ('toresella', 1), ('wenzhhou', 1), ('wyrtzerd', 1)]...\n",
- "2019-06-17 01:49:07,112 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 880000 (=100.0%) documents\n",
- "2019-06-17 01:49:09,350 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:09,402 : INFO : adding document #880000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:23,951 : INFO : discarding 33425 tokens: [('guntho', 1), ('gunþo', 1), ('izinzula', 1), ('kapitano', 1), ('krestyanskikh', 1), ('vserossiiskogo', 1), ('artsales', 1), ('culturenews', 1), ('eventmagazine', 1), ('heterosporus', 1)]...\n",
- "2019-06-17 01:49:23,952 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 890000 (=100.0%) documents\n",
- "2019-06-17 01:49:26,241 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:26,295 : INFO : adding document #890000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:40,584 : INFO : discarding 33534 tokens: [('wizów', 1), ('włodarz', 1), ('ziellerthal', 1), ('geppersdorf', 1), ('gussregen', 1), ('koschen', 1), ('kunnerwitz', 1), ('morchenstern', 1), ('pampitz', 1), ('schanzenbau', 1)]...\n",
- "2019-06-17 01:49:40,585 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 900000 (=100.0%) documents\n",
- "2019-06-17 01:49:42,817 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:42,869 : INFO : adding document #900000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:49:57,378 : INFO : discarding 34162 tokens: [('meprodine', 1), ('methallorphan', 1), ('methiodone', 1), ('methopholine', 1), ('methorphan', 1), ('methoxymetopon', 1), ('morphanol', 1), ('morphinones', 1), ('morphols', 1), ('naloxazone', 1)]...\n",
- "2019-06-17 01:49:57,379 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 910000 (=100.0%) documents\n",
- "2019-06-17 01:49:59,683 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:49:59,736 : INFO : adding document #910000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:13,467 : INFO : discarding 30452 tokens: [('shopsy', 1), ('gluecksohn', 1), ('schönheimer', 1), ('sgbm', 1), ('balazos', 1), ('cascanueces', 1), ('confundida', 1), ('impresentables', 1), ('netas', 1), ('nikté', 1)]...\n",
- "2019-06-17 01:50:13,468 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 920000 (=100.0%) documents\n",
- "2019-06-17 01:50:15,669 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:15,720 : INFO : adding document #920000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:29,908 : INFO : discarding 32640 tokens: [('battee', 1), ('griggel', 1), ('liquitones', 1), ('opek', 1), ('shockra', 1), ('prekopsk', 1), ('ftwaynepgh', 1), ('notmanyifany', 1), ('dolvevita', 1), ('cooldog', 1)]...\n",
- "2019-06-17 01:50:29,909 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 930000 (=100.0%) documents\n",
- "2019-06-17 01:50:32,222 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:32,276 : INFO : adding document #930000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:46,193 : INFO : discarding 29694 tokens: [('dinestein', 1), ('hakik', 1), ('spiralmouth', 1), ('theplayers', 1), ('callisen', 1), ('herniae', 1), ('lotheissen', 1), ('retrovascular', 1), ('transpectineal', 1), ('durika', 1)]...\n",
- "2019-06-17 01:50:46,193 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 940000 (=100.0%) documents\n",
- "2019-06-17 01:50:48,379 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:50:48,431 : INFO : adding document #940000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:02,982 : INFO : discarding 29540 tokens: [('boronation', 1), ('butylzinc', 1), ('iodoaniline', 1), ('zincated', 1), ('ballwork', 1), ('fascione', 1), ('angees', 1), ('gasbarri', 1), ('mckemmie', 1), ('ridgwell', 1)]...\n",
- "2019-06-17 01:51:02,983 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 950000 (=100.0%) documents\n",
- "2019-06-17 01:51:05,246 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:05,300 : INFO : adding document #950000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:18,698 : INFO : discarding 33294 tokens: [('zonetv', 1), ('zonetvc', 1), ('zonetvn', 1), ('šajmovič', 1), ('štvrtecká', 1), ('ρεξ', 1), ('комесарот', 1), ('комисар', 1), ('комісар', 1), ('рекс', 1)]...\n",
- "2019-06-17 01:51:18,699 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 960000 (=100.0%) documents\n",
- "2019-06-17 01:51:20,895 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:20,946 : INFO : adding document #960000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:35,149 : INFO : discarding 30331 tokens: [('avanak', 1), ('köstebek', 1), ('utanmaz', 1), ('vites', 1), ('changor', 1), ('lovisex', 1), ('sadissimo', 1), ('satarella', 1), ('strictement', 1), ('yandım', 1)]...\n",
- "2019-06-17 01:51:35,150 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 970000 (=100.0%) documents\n",
- "2019-06-17 01:51:37,450 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:37,504 : INFO : adding document #970000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:50,628 : INFO : discarding 26796 tokens: [('burkinaonline', 1), ('evénement', 1), ('paalga', 1), ('salankoloto', 1), ('danshøj', 1), ('falkoner', 1), ('kampmannsgade', 1), ('nyelandsvej', 1), ('nørrebroparken', 1), ('reloctated', 1)]...\n",
- "2019-06-17 01:51:50,629 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 980000 (=100.0%) documents\n",
- "2019-06-17 01:51:52,837 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:51:52,888 : INFO : adding document #980000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:07,226 : INFO : discarding 28900 tokens: [('ganshou', 1), ('安周', 1), ('樂都', 1), ('沮渠乾壽', 1), ('河西王', 1), ('闞伯周', 1), ('bendiwi', 1), ('caraibo', 1), ('caraïbo', 1), ('countsmen', 1)]...\n",
- "2019-06-17 01:52:07,227 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 990000 (=100.0%) documents\n",
- "2019-06-17 01:52:09,505 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:09,559 : INFO : adding document #990000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:23,121 : INFO : discarding 32624 tokens: [('symclosene', 1), ('achiq', 1), ('aghasiyev', 1), ('bagradouni', 1), ('bailoff', 1), ('balakhany', 1), ('bunyat', 1), ('gotsinski', 1), ('gubernskaya', 1), ('hümmet', 1)]...\n",
- "2019-06-17 01:52:23,122 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1000000 (=100.0%) documents\n",
- "2019-06-17 01:52:25,348 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:25,401 : INFO : adding document #1000000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:38,550 : INFO : discarding 33876 tokens: [('кикиморы', 1), ('клира', 1), ('лежала', 1), ('листовского', 1), ('лугском', 1), ('материалом', 1), ('мгновенно', 1), ('мерещатся', 1), ('местность', 1), ('минкино', 1)]...\n",
- "2019-06-17 01:52:38,551 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1010000 (=100.0%) documents\n",
- "2019-06-17 01:52:40,878 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:40,932 : INFO : adding document #1010000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:54,757 : INFO : discarding 37876 tokens: [('knockermen', 1), ('mdbm', 1), ('minesign', 1), ('minesigns', 1), ('rocksmacker', 1), ('schmaltzberg', 1), ('shortarse', 1), ('snoriscousin', 1), ('thogsdaughter', 1), ('undwarfish', 1)]...\n",
- "2019-06-17 01:52:54,758 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1020000 (=100.0%) documents\n",
- "2019-06-17 01:52:56,997 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:52:57,051 : INFO : adding document #1020000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:11,040 : INFO : discarding 40667 tokens: [('wingbegan', 1), ('dimsums', 1), ('damasak', 1), ('gagamari', 1), ('gueshkar', 1), ('guessere', 1), ('brygo', 1), ('dulleu', 1), ('soerlie', 1), ('prevratadzhiya', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:53:11,041 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1030000 (=100.0%) documents\n",
- "2019-06-17 01:53:13,322 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:13,377 : INFO : adding document #1030000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:26,713 : INFO : discarding 37470 tokens: [('tɕak', 1), ('tɕaw', 1), ('tɕaŋdaj', 1), ('tɕaʔ', 1), ('tɕaːj', 1), ('tɕiŋ', 1), ('tɕèp', 1), ('tɕʰaʔbàp', 1), ('tɕʰôːk', 1), ('tɕʰɔ', 1)]...\n",
- "2019-06-17 01:53:26,714 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1040000 (=100.0%) documents\n",
- "2019-06-17 01:53:28,907 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:28,959 : INFO : adding document #1040000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:43,068 : INFO : discarding 31601 tokens: [('beedham', 1), ('brodertofte', 1), ('brothertoftborn', 1), ('buttolle', 1), ('cromell', 1), ('curtois', 1), ('gerordot', 1), ('lemanof', 1), ('marrat', 1), ('sempringam', 1)]...\n",
- "2019-06-17 01:53:43,069 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1050000 (=100.0%) documents\n",
- "2019-06-17 01:53:45,391 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:45,445 : INFO : adding document #1050000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:57,650 : INFO : discarding 34472 tokens: [('wjak', 1), ('wjbz', 1), ('wjdt', 1), ('wjfc', 1), ('wjjt', 1), ('wjle', 1), ('wjll', 1), ('wjnu', 1), ('wjqj', 1), ('wjrv', 1)]...\n",
- "2019-06-17 01:53:57,651 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1060000 (=100.0%) documents\n",
- "2019-06-17 01:53:59,864 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:53:59,916 : INFO : adding document #1060000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:12,966 : INFO : discarding 30716 tokens: [('fautré', 1), ('hrwf', 1), ('iclars', 1), ('aradhane', 1), ('auradkar', 1), ('basavanth', 1), ('basawanna', 1), ('belkera', 1), ('bhukari', 1), ('borale', 1)]...\n",
- "2019-06-17 01:54:12,967 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1070000 (=100.0%) documents\n",
- "2019-06-17 01:54:15,245 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:15,299 : INFO : adding document #1070000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:26,559 : INFO : discarding 38842 tokens: [('応永の外寇', 1), ('krajcek', 1), ('diplompädagogin', 1), ('miłoradz', 1), ('sailenterprise', 1), ('dohnst', 1), ('kammennaya', 1), ('kogadovski', 1), ('kolymskie', 1), ('kolymskiy', 1)]...\n",
- "2019-06-17 01:54:26,560 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1080000 (=100.0%) documents\n",
- "2019-06-17 01:54:28,765 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:28,818 : INFO : adding document #1080000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:42,190 : INFO : discarding 40089 tokens: [('opšteg', 1), ('petrovdan', 1), ('ramazanski', 1), ('sporazuma', 1), ('stipandan', 1), ('stjepandan', 1), ('uspostave', 1), ('uznesenje', 1), ('šehida', 1), ('васкрс', 1)]...\n",
- "2019-06-17 01:54:42,191 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1090000 (=100.0%) documents\n",
- "2019-06-17 01:54:44,492 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:44,548 : INFO : adding document #1090000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:56,898 : INFO : discarding 30628 tokens: [('adlaf', 1), ('potashnik', 1), ('regaudie', 1), ('sakellaropoulo', 1), ('urdl', 1), ('zoern', 1), ('greeder', 1), ('paratron', 1), ('bricasti', 1), ('ikis', 1)]...\n",
- "2019-06-17 01:54:56,899 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1100000 (=100.0%) documents\n",
- "2019-06-17 01:54:59,130 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:54:59,185 : INFO : adding document #1100000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:11,806 : INFO : discarding 30582 tokens: [('adrianopels', 1), ('akkorder', 1), ('ansigtstyven', 1), ('begyndte', 1), ('bolettes', 1), ('borgkælderens', 1), ('brudefærd', 1), ('brænder', 1), ('danskefilm', 1), ('derbyløb', 1)]...\n",
- "2019-06-17 01:55:11,807 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1110000 (=100.0%) documents\n",
- "2019-06-17 01:55:14,124 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:14,180 : INFO : adding document #1110000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:26,411 : INFO : discarding 28130 tokens: [('sakuzō', 1), ('yorita', 1), ('borita', 1), ('neoreals', 1), ('alicyn', 1), ('bartys', 1), ('fufalla', 1), ('glissandra', 1), ('humidia', 1), ('incanta', 1)]...\n",
- "2019-06-17 01:55:26,412 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1120000 (=100.0%) documents\n",
- "2019-06-17 01:55:28,644 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:28,697 : INFO : adding document #1120000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:41,039 : INFO : discarding 31227 tokens: [('tvguidemag', 1), ('animationvisual', 1), ('assistancekey', 1), ('atwiki', 1), ('beginningep', 1), ('designkey', 1), ('effectsart', 1), ('kattobase', 1), ('liliputian', 1), ('sakuga', 1)]...\n",
- "2019-06-17 01:55:41,040 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1130000 (=100.0%) documents\n",
- "2019-06-17 01:55:43,351 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:43,407 : INFO : adding document #1130000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:55,615 : INFO : discarding 28736 tokens: [('eitchon', 1), ('quennel', 1), ('fricho', 1), ('halbbauern', 1), ('homburgeramt', 1), ('sauriermuseum', 1), ('vollbauern', 1), ('meropi', 1), ('bürersteig', 1), ('gansungen', 1)]...\n",
- "2019-06-17 01:55:55,615 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1140000 (=100.0%) documents\n",
- "2019-06-17 01:55:57,838 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:55:57,890 : INFO : adding document #1140000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:11,643 : INFO : discarding 29485 tokens: [('pspvideo', 1), ('sonystyle', 1), ('junkclub', 1), ('omeara', 1), ('zeffira', 1), ('koroseta', 1), ('마이티', 1), ('aldoshin', 1), ('bendjob', 1), ('guguchkin', 1)]...\n",
- "2019-06-17 01:56:11,643 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1150000 (=100.0%) documents\n"
+ "2019-05-06 15:57:45,000 : INFO : loading Dictionary object from wiki.dict\n",
+ "2019-05-06 15:57:45,031 : INFO : loaded wiki.dict\n"
]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:56:13,978 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:14,034 : INFO : adding document #1150000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:26,040 : INFO : discarding 24991 tokens: [('baliwasan', 1), ('boalan', 1), ('bunguiao', 1), ('cabaluay', 1), ('cabatangan', 1), ('calabasa', 1), ('calarian', 1), ('canelar', 1), ('capisan', 1), ('culianan', 1)]...\n",
- "2019-06-17 01:56:26,041 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1160000 (=100.0%) documents\n",
- "2019-06-17 01:56:28,241 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:28,295 : INFO : adding document #1160000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:40,150 : INFO : discarding 36028 tokens: [('jstie', 1), ('klihtie', 1), ('klihtine', 1), ('klæhtan', 1), ('maanagierte', 1), ('njuaslan', 1), ('njueslie', 1), ('njøøsline', 1), ('nommesne', 1), ('ollebe', 1)]...\n",
- "2019-06-17 01:56:40,151 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1170000 (=100.0%) documents\n",
- "2019-06-17 01:56:42,484 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:42,542 : INFO : adding document #1170000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:54,673 : INFO : discarding 27354 tokens: [('usvba', 1), ('abhiraja', 1), ('burmanization', 1), ('dhammavilasa', 1), ('hlaung', 1), ('hpyat', 1), ('htilomino', 1), ('hton', 1), ('kadus', 1), ('kanngai', 1)]...\n",
- "2019-06-17 01:56:54,674 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1180000 (=100.0%) documents\n",
- "2019-06-17 01:56:56,901 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:56:56,954 : INFO : adding document #1180000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:09,240 : INFO : discarding 28618 tokens: [('カサブタ', 1), ('kōzakihana', 1), ('mikkōsha', 1), ('higonoumi', 1), ('iwasada', 1), ('kamitori', 1), ('shimotori', 1), ('熊本都市圏', 1), ('hinagu', 1), ('myokensai', 1)]...\n",
- "2019-06-17 01:57:09,241 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1190000 (=100.0%) documents\n",
- "2019-06-17 01:57:11,538 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:11,599 : INFO : adding document #1190000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:23,397 : INFO : discarding 27031 tokens: [('praktike', 1), ('rikecie', 1), ('swiecki', 1), ('totawa', 1), ('traumatism', 1), ('tsianofagi', 1), ('ultramicrobes', 1), ('ultramikrobe', 1), ('ultrastruktura', 1), ('ultravirusi', 1)]...\n",
- "2019-06-17 01:57:23,398 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1200000 (=100.0%) documents\n",
- "2019-06-17 01:57:25,640 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:25,693 : INFO : adding document #1200000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:38,710 : INFO : discarding 29642 tokens: [('haasnoot', 1), ('stempted', 1), ('sunners', 1), ('kaifahina', 1), ('luseane', 1), ('moimoikimofuta', 1), ('tuʻihala', 1), ('tuʻivanuavou', 1), ('berlinact', 1), ('kincheng', 1)]...\n",
- "2019-06-17 01:57:38,711 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1210000 (=100.0%) documents\n",
- "2019-06-17 01:57:41,010 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:41,066 : INFO : adding document #1210000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:53,372 : INFO : discarding 29855 tokens: [('inudated', 1), ('boxington', 1), ('tworóg', 1), ('stricht', 1), ('broomwheat', 1), ('amddiffyniad', 1), ('benkemoun', 1), ('blogspheres', 1), ('bubblenauts', 1), ('inpact', 1)]...\n",
- "2019-06-17 01:57:53,373 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1220000 (=100.0%) documents\n",
- "2019-06-17 01:57:55,612 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:57:55,666 : INFO : adding document #1220000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:07,900 : INFO : discarding 29448 tokens: [('dvsw', 1), ('footballplus', 1), ('ballyneale', 1), ('bardiov', 1), ('trencsénteplic', 1), ('brustia', 1), ('medeli', 1), ('boxcuttuhzteam', 1), ('courchinoux', 1), ('fatate', 1)]...\n",
- "2019-06-17 01:58:07,901 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1230000 (=100.0%) documents\n",
- "2019-06-17 01:58:10,217 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:10,273 : INFO : adding document #1230000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:22,222 : INFO : discarding 29038 tokens: [('khanaqahs', 1), ('khaniqah', 1), ('payvan', 1), ('riyasateyn', 1), ('ṣufiyya', 1), ('afformentioned', 1), ('autotouring', 1), ('carthrottle', 1), ('ceeed', 1), ('eco_cee', 1)]...\n",
- "2019-06-17 01:58:22,223 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1240000 (=100.0%) documents\n",
- "2019-06-17 01:58:24,522 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:24,577 : INFO : adding document #1240000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:36,518 : INFO : discarding 31305 tokens: [('abfaltersbach', 1), ('lovis_corinth_', 1), ('petzenburg', 1), ('seppel', 1), ('seppelhut', 1), ('tirolerhut', 1), ('begloved', 1), ('contrabandist', 1), ('doruccio', 1), ('shipsmithing', 1)]...\n",
- "2019-06-17 01:58:36,519 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1250000 (=100.0%) documents\n",
- "2019-06-17 01:58:38,827 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:38,883 : INFO : adding document #1250000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:50,711 : INFO : discarding 30233 tokens: [('pyreau', 1), ('shquindy', 1), ('tamaree', 1), ('teeyhittaan', 1), ('barroetaveña', 1), ('caleidoscopio', 1), ('doño', 1), ('ejqfsc', 1), ('esaín', 1), ('estremecimiento', 1)]...\n",
- "2019-06-17 01:58:50,712 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1260000 (=100.0%) documents\n",
- "2019-06-17 01:58:52,949 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:58:53,004 : INFO : adding document #1260000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:05,223 : INFO : discarding 30100 tokens: [('宝应元年建寅月甲申', 1), ('寅月', 1), ('小滿所在月', 1), ('小滿所在月初一庚戌', 1), ('左降官及流人罚镇效力者还之', 1), ('己丑月', 1), ('己亥月', 1), ('己卯月', 1), ('己巳月', 1), ('己年', 1)]...\n",
- "2019-06-17 01:59:05,224 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1270000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 01:59:07,546 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:07,604 : INFO : adding document #1270000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:20,597 : INFO : discarding 29004 tokens: [('wilmshausen', 1), ('zwewwelkuche', 1), ('fiestavan', 1), ('gearkit', 1), ('rallyeconcept', 1), ('rallyesport', 1), ('shawspeed', 1), ('sportizm', 1), ('pandiassou', 1), ('steigerts', 1)]...\n",
- "2019-06-17 01:59:20,598 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1280000 (=100.0%) documents\n",
- "2019-06-17 01:59:22,867 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:22,924 : INFO : adding document #1280000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:35,307 : INFO : discarding 29046 tokens: [('schwarzeneck', 1), ('seamstr', 1), ('sloothaag', 1), ('smidtsche', 1), ('waldlieferant', 1), ('nawls', 1), ('tuinol', 1), ('tuinols', 1), ('tuminal', 1), ('tunial', 1)]...\n",
- "2019-06-17 01:59:35,307 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1290000 (=100.0%) documents\n",
- "2019-06-17 01:59:37,649 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:37,706 : INFO : adding document #1290000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:49,669 : INFO : discarding 34103 tokens: [('sjödala', 1), ('örtendahl', 1), ('gulmer', 1), ('oltraver', 1), ('simenovich', 1), ('einspline', 1), ('fitpack', 1), ('pppack', 1), ('csunity', 1), ('educationabroad', 1)]...\n",
- "2019-06-17 01:59:49,671 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1300000 (=100.0%) documents\n",
- "2019-06-17 01:59:51,947 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 01:59:52,004 : INFO : adding document #1300000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:05,480 : INFO : discarding 28735 tokens: [('briotii', 1), ('worreh', 1), ('ottomai', 1), ('sevkur', 1), ('annihator', 1), ('capeshooters', 1), ('sexcastle', 1), ('busela', 1), ('gilzanu', 1), ('qalparunda', 1)]...\n",
- "2019-06-17 02:00:05,481 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1310000 (=100.0%) documents\n",
- "2019-06-17 02:00:07,848 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:07,905 : INFO : adding document #1310000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:20,587 : INFO : discarding 28754 tokens: [('ornums', 1), ('pugweenee', 1), ('sagwitch', 1), ('seuhubeogoi', 1), ('timbimboo', 1), ('toquashes', 1), ('zacheas', 1), ('zachias', 1), ('haudagain', 1), ('mounthooly', 1)]...\n",
- "2019-06-17 02:00:20,588 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1320000 (=100.0%) documents\n",
- "2019-06-17 02:00:22,870 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:22,925 : INFO : adding document #1320000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:35,468 : INFO : discarding 27634 tokens: [('surrogatekey', 1), ('philacheetah', 1), ('philaflamingos', 1), ('philamarmoset', 1), ('philapolarbear', 1), ('allianes', 1), ('axilan', 1), ('fuzhuleiruodi', 1), ('huaixiu', 1), ('junximi', 1)]...\n",
- "2019-06-17 02:00:35,469 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1330000 (=100.0%) documents\n",
- "2019-06-17 02:00:37,796 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:37,852 : INFO : adding document #1330000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:50,673 : INFO : discarding 29985 tokens: [('aleev', 1), ('chandrashoor', 1), ('cresso', 1), ('taibh', 1), ('古今算法之記', 1), ('petrificati', 1), ('risponsiva', 1), ('azaarudheen', 1), ('bramic', 1), ('idaiyinam', 1)]...\n",
- "2019-06-17 02:00:50,674 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1340000 (=100.0%) documents\n",
- "2019-06-17 02:00:52,937 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:00:52,991 : INFO : adding document #1340000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:05,632 : INFO : discarding 25152 tokens: [('sholayees', 1), ('دکابل', 1), ('cataraft', 1), ('hehlkeek', 1), ('ishkêesh', 1), ('klamet', 1), ('ɬámaɬ', 1), ('sakyamunis', 1), ('zhendaozi', 1), ('bacteraemic', 1)]...\n",
- "2019-06-17 02:01:05,633 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1350000 (=100.0%) documents\n",
- "2019-06-17 02:01:07,975 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:08,031 : INFO : adding document #1350000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:20,969 : INFO : discarding 27757 tokens: [('hokevank', 1), ('horomos', 1), ('hovtun', 1), ('kamkhut', 1), ('karmravan', 1), ('khtzkonk', 1), ('krasar', 1), ('leniankan', 1), ('lernagyugh', 1), ('lorasar', 1)]...\n",
- "2019-06-17 02:01:20,970 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1360000 (=100.0%) documents\n",
- "2019-06-17 02:01:23,261 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:23,315 : INFO : adding document #1360000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:36,230 : INFO : discarding 28198 tokens: [('bogdaniana', 1), ('bondii', 1), ('boudetii', 1), ('boutiqueana', 1), ('brevicornuta', 1), ('callensii', 1), ('carsonioides', 1), ('chondrocarpa', 1), ('cleomifolia', 1), ('cobalticola', 1)]...\n",
- "2019-06-17 02:01:36,231 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1370000 (=100.0%) documents\n",
- "2019-06-17 02:01:38,605 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:38,662 : INFO : adding document #1370000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:51,853 : INFO : discarding 29164 tokens: [('warbloggers', 1), ('aelfthryth', 1), ('elfthryth', 1), ('forespeca', 1), ('æthewald', 1), ('optōmize', 1), ('räzo', 1), ('xpressionism', 1), ('boerencommando', 1), ('monochroom', 1)]...\n",
- "2019-06-17 02:01:51,854 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1380000 (=100.0%) documents\n",
- "2019-06-17 02:01:54,102 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:01:54,171 : INFO : adding document #1380000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:07,463 : INFO : discarding 32929 tokens: [('смокінг', 1), ('спаринг', 1), ('спортсмен', 1), ('танкер', 1), ('телетайп', 1), ('тендер', 1), ('тент', 1), ('теніс', 1), ('техніка', 1), ('тканини', 1)]...\n",
- "2019-06-17 02:02:07,464 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1390000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:02:09,796 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:09,854 : INFO : adding document #1390000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:22,566 : INFO : discarding 28677 tokens: [('vaiu', 1), ('vanniari', 1), ('vassìa', 1), ('vastare', 1), ('vastunati', 1), ('viatu', 1), ('vinissa', 1), ('vinissi', 1), ('vrazza', 1), ('vucceri', 1)]...\n",
- "2019-06-17 02:02:22,567 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1400000 (=100.0%) documents\n",
- "2019-06-17 02:02:24,835 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:24,889 : INFO : adding document #1400000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:37,713 : INFO : discarding 34940 tokens: [('interbbs', 1), ('héalaighthe', 1), ('bargehouses', 1), ('balibrera', 1), ('escolán', 1), ('céberet', 1), ('kanlayani', 1), ('loubere', 1), ('petracha', 1), ('pijaivanit', 1)]...\n",
- "2019-06-17 02:02:37,714 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1410000 (=100.0%) documents\n",
- "2019-06-17 02:02:40,091 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:40,150 : INFO : adding document #1410000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:52,657 : INFO : discarding 27468 tokens: [('autohemotherapy', 1), ('ishqq', 1), ('performancces', 1), ('repetitivein', 1), ('borshchevo', 1), ('bragagna', 1), ('cymotrichous', 1), ('fjelkinge', 1), ('voultsou', 1), ('lichtenstamp', 1)]...\n",
- "2019-06-17 02:02:52,657 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1420000 (=100.0%) documents\n",
- "2019-06-17 02:02:54,932 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:02:54,989 : INFO : adding document #1420000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:07,518 : INFO : discarding 27097 tokens: [('skorupskyi', 1), ('terles', 1), ('ukraincach', 1), ('vazhki', 1), ('viddily', 1), ('voivodsh', 1), ('volyni', 1), ('vtraty', 1), ('webski', 1), ('wolyniu', 1)]...\n",
- "2019-06-17 02:03:07,519 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1430000 (=100.0%) documents\n",
- "2019-06-17 02:03:09,872 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:09,929 : INFO : adding document #1430000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:22,126 : INFO : discarding 28790 tokens: [('嫻情', 1), ('少女雜誌', 1), ('就是完', 1), ('左右手', 1), ('幾時再見', 1), ('從來是一對', 1), ('心就要飛了', 1), ('心滿意足', 1), ('忘記悲傷', 1), ('情意結', 1)]...\n",
- "2019-06-17 02:03:22,126 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1440000 (=100.0%) documents\n",
- "2019-06-17 02:03:24,415 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:24,471 : INFO : adding document #1440000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:36,538 : INFO : discarding 25012 tokens: [('dreckley', 1), ('etsko', 1), ('flibberts', 1), ('gleanie', 1), ('gockey', 1), ('gramersow', 1), ('granfergrig', 1), ('huppenstop', 1), ('inztead', 1), ('jonnick', 1)]...\n",
- "2019-06-17 02:03:36,538 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1450000 (=100.0%) documents\n",
- "2019-06-17 02:03:38,909 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:38,966 : INFO : adding document #1450000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:51,130 : INFO : discarding 26790 tokens: [('kuiack', 1), ('bhukkhuni', 1), ('göö', 1), ('hengsure', 1), ('ikkhatīti', 1), ('outhai', 1), ('sāmaneras', 1), ('talapoy', 1), ('watpailom', 1), ('śrāmaṇeri', 1)]...\n",
- "2019-06-17 02:03:51,131 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1460000 (=100.0%) documents\n",
- "2019-06-17 02:03:53,361 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:03:53,416 : INFO : adding document #1460000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:05,099 : INFO : discarding 29887 tokens: [('bundri', 1), ('bunganail', 1), ('bungeet', 1), ('bungeluke', 1), ('bungletap', 1), ('bunguluke', 1), ('buninjon', 1), ('bunstons', 1), ('bunurouk', 1), ('buragwonduc', 1)]...\n",
- "2019-06-17 02:04:05,100 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1470000 (=100.0%) documents\n",
- "2019-06-17 02:04:07,420 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:07,477 : INFO : adding document #1470000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:19,952 : INFO : discarding 31039 tokens: [('burgid', 1), ('halavah', 1), ('osszefogva', 1), ('potrezbie', 1), ('potrezebie', 1), ('spün', 1), ('aerocondór', 1), ('carabaische', 1), ('caraibische', 1), ('congofrigo', 1)]...\n",
- "2019-06-17 02:04:19,953 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1480000 (=100.0%) documents\n",
- "2019-06-17 02:04:22,207 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:22,265 : INFO : adding document #1480000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:34,141 : INFO : discarding 28271 tokens: [('guangyangxiang', 1), ('奉天子以令不臣', 1), ('挟天子以令诸侯', 1), ('王佐之才', 1), ('荀伯子', 1), ('荀俁', 1), ('荀儉', 1), ('荀寓', 1), ('荀悝', 1), ('荀惲', 1)]...\n",
- "2019-06-17 02:04:34,142 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1490000 (=100.0%) documents\n",
- "2019-06-17 02:04:36,444 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:36,501 : INFO : adding document #1490000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:48,813 : INFO : discarding 30491 tokens: [('temporiser', 1), ('eftsu', 1), ('gnibi', 1), ('dedesignation', 1), ('kuwaikabi', 1), ('mândâcanu', 1), ('carabeillo', 1), ('narixa', 1), ('bilogorska', 1), ('koprivničko', 1)]...\n",
- "2019-06-17 02:04:48,814 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1500000 (=100.0%) documents\n",
- "2019-06-17 02:04:51,065 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:04:51,124 : INFO : adding document #1500000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:03,276 : INFO : discarding 31282 tokens: [('kentyre', 1), ('martinvale', 1), ('mcannel', 1), ('millcove', 1), ('ohalloran', 1), ('tarantum', 1), ('provencee', 1), ('pgmedia', 1), ('fourbs', 1), ('altshell', 1)]...\n",
- "2019-06-17 02:05:03,277 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1510000 (=100.0%) documents\n",
- "2019-06-17 02:05:05,609 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:05:05,669 : INFO : adding document #1510000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:17,786 : INFO : discarding 29399 tokens: [('jinand', 1), ('kidoand', 1), ('njotoand', 1), ('novitaand', 1), ('nurlitaand', 1), ('oguraand', 1), ('poluakan', 1), ('rizaland', 1), ('shenand', 1), ('rabbinico', 1)]...\n",
- "2019-06-17 02:05:17,786 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1520000 (=100.0%) documents\n",
- "2019-06-17 02:05:20,058 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:20,113 : INFO : adding document #1520000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:32,849 : INFO : discarding 29072 tokens: [('martikkala', 1), ('pakkasherra', 1), ('quicksliver', 1), ('suomela', 1), ('vomiturition', 1), ('ylikoski', 1), ('fiammeri', 1), ('babekuhl', 1), ('normainvilles', 1), ('reresbys', 1)]...\n",
- "2019-06-17 02:05:32,849 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1530000 (=100.0%) documents\n",
- "2019-06-17 02:05:35,177 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:35,236 : INFO : adding document #1530000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:47,499 : INFO : discarding 27530 tokens: [('moppe', 1), ('holevillegas', 1), ('hydroblaster', 1), ('guérault', 1), ('mervé', 1), ('buravchikov', 1), ('kveton', 1), ('káňa', 1), ('sopin', 1), ('peranda', 1)]...\n",
- "2019-06-17 02:05:47,500 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1540000 (=100.0%) documents\n",
- "2019-06-17 02:05:49,762 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:05:49,818 : INFO : adding document #1540000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:03,979 : INFO : discarding 28064 tokens: [('ablauts', 1), ('bjúgaldin', 1), ('fræði', 1), ('icelandicised', 1), ('markaður', 1), ('veður', 1), ('veðurfræði', 1), ('þjóta', 1), ('þota', 1), ('þyrla', 1)]...\n",
- "2019-06-17 02:06:03,980 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1550000 (=100.0%) documents\n",
- "2019-06-17 02:06:06,305 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:06,362 : INFO : adding document #1550000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:17,970 : INFO : discarding 27133 tokens: [('estina', 1), ('ilpleut', 1), ('poignardée', 1), ('countrymate', 1), ('mlbers', 1), ('vhora', 1), ('assorodobraj', 1), ('ekonomista', 1), ('litynski', 1), ('socjalista', 1)]...\n",
- "2019-06-17 02:06:17,971 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1560000 (=100.0%) documents\n",
- "2019-06-17 02:06:20,212 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:20,271 : INFO : adding document #1560000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:32,867 : INFO : discarding 27466 tokens: [('ekamra', 1), ('venkalakshmamma', 1), ('cirruscentral', 1), ('jetquik', 1), ('kjwn', 1), ('aberne', 1), ('blåt', 1), ('brænder', 1), ('damernes', 1), ('farmors', 1)]...\n",
- "2019-06-17 02:06:32,868 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1570000 (=100.0%) documents\n",
- "2019-06-17 02:06:35,200 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:35,257 : INFO : adding document #1570000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:47,207 : INFO : discarding 26710 tokens: [('redhanders', 1), ('cjnh', 1), ('mybancroftnow', 1), ('agasteeswaram', 1), ('deviculam', 1), ('neyyatinkara', 1), ('peermede', 1), ('shencottai', 1), ('shenkotta', 1), ('vilvancode', 1)]...\n",
- "2019-06-17 02:06:47,208 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1580000 (=100.0%) documents\n",
- "2019-06-17 02:06:49,476 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:06:49,531 : INFO : adding document #1580000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:01,261 : INFO : discarding 27104 tokens: [('住吉駅', 1), ('fibroscopy', 1), ('eeec', 1), ('frozena', 1), ('tcces', 1), ('xvib', 1), ('štedionica', 1), ('abitanti', 1), ('aggira', 1), ('dichiarazione', 1)]...\n",
- "2019-06-17 02:07:01,262 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1590000 (=100.0%) documents\n",
- "2019-06-17 02:07:03,614 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:03,671 : INFO : adding document #1590000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:15,759 : INFO : discarding 26375 tokens: [('honeybeat', 1), ('materised', 1), ('swassey', 1), ('minyinga', 1), ('datasift', 1), ('gnip', 1), ('jstart', 1), ('six_apart', 1), ('rossmeisl', 1), ('adundance', 1)]...\n",
- "2019-06-17 02:07:15,760 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1600000 (=100.0%) documents\n",
- "2019-06-17 02:07:18,028 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:18,083 : INFO : adding document #1600000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:29,337 : INFO : discarding 23643 tokens: [('wsrhl', 1), ('ribeter', 1), ('eastnorthampton', 1), ('gumberry', 1), ('jablenski', 1), ('sharpschool', 1), ('ovjhl', 1), ('cymograph', 1), ('kaiseikan', 1), ('linggard', 1)]...\n",
- "2019-06-17 02:07:29,338 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1610000 (=100.0%) documents\n",
- "2019-06-17 02:07:31,669 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:31,732 : INFO : adding document #1610000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:42,888 : INFO : discarding 29267 tokens: [('bollersdorf', 1), ('ernsthof', 1), ('companiy', 1), ('derailde', 1), ('ramonsky', 1), ('chlamydodera', 1), ('churrings', 1), ('graemechapman', 1), ('kusmierski', 1), ('mdahlem', 1)]...\n",
- "2019-06-17 02:07:42,889 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1620000 (=100.0%) documents\n",
- "2019-06-17 02:07:45,151 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:45,215 : INFO : adding document #1620000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:57,363 : INFO : discarding 27066 tokens: [('krankit', 1), ('gurwits', 1), ('mucuraev', 1), ('yarycheva', 1), ('ɪlkweːt', 1), ('ʒoːn', 1), ('glinny', 1), ('belde', 1), ('cabazco', 1), ('coralía', 1)]...\n",
- "2019-06-17 02:07:57,364 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1630000 (=100.0%) documents\n",
- "2019-06-17 02:07:59,680 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:07:59,737 : INFO : adding document #1630000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:08:11,218 : INFO : discarding 24155 tokens: [('beleos', 1), ('goolma', 1), ('marinčin', 1), ('alhacan', 1), ('alkarkhi', 1), ('brahmasphuta', 1), ('centurydates', 1), ('samawal', 1), ('ḵhwārizmī', 1), ('lupae', 1)]...\n",
- "2019-06-17 02:08:11,218 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1640000 (=100.0%) documents\n",
- "2019-06-17 02:08:13,463 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:13,518 : INFO : adding document #1640000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:24,872 : INFO : discarding 29364 tokens: [('aerotones', 1), ('mocp', 1), ('orotones', 1), ('photoreview', 1), ('woodstocks', 1), ('zoghlin', 1), ('zoghlin_ryan', 1), ('uthba', 1), ('strettoia', 1), ('vullioud', 1)]...\n",
- "2019-06-17 02:08:24,873 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1650000 (=100.0%) documents\n",
- "2019-06-17 02:08:27,219 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:27,277 : INFO : adding document #1650000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:35,780 : INFO : discarding 21209 tokens: [('beishengzhou', 1), ('kuirong', 1), ('mengmao', 1), ('nalou', 1), ('shierguan', 1), ('shisi', 1), ('tehgchong', 1), ('tuguan', 1), ('zhangguan', 1), ('zhefang', 1)]...\n",
- "2019-06-17 02:08:35,780 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1660000 (=100.0%) documents\n",
- "2019-06-17 02:08:38,031 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:38,088 : INFO : adding document #1660000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:49,329 : INFO : discarding 26778 tokens: [('chakalov', 1), ('dodunekov', 1), ('kenderov', 1), ('geeno', 1), ('göbbel', 1), ('mainquin', 1), ('marvenis', 1), ('numarx', 1), ('mackbrown', 1), ('texasfootball', 1)]...\n",
- "2019-06-17 02:08:49,330 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1670000 (=100.0%) documents\n",
- "2019-06-17 02:08:51,676 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:08:51,734 : INFO : adding document #1670000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:00,768 : INFO : discarding 20676 tokens: [('tornavaca', 1), ('feisanna', 1), ('werzel', 1), ('brentanobad', 1), ('ellavere', 1), ('ervita', 1), ('jõeküla', 1), ('kuusna', 1), ('laaneotsa', 1), ('liusvere', 1)]...\n",
- "2019-06-17 02:09:00,769 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1680000 (=100.0%) documents\n",
- "2019-06-17 02:09:03,043 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:03,098 : INFO : adding document #1680000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:11,323 : INFO : discarding 17209 tokens: [('platychilus', 1), ('pleurostriatus', 1), ('haddadus', 1), ('pluvicanorus', 1), ('polemistes', 1), ('duffall', 1), ('strawbsweb', 1), ('toothie', 1), ('poolei', 1), ('coquíes', 1)]...\n",
- "2019-06-17 02:09:11,324 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1690000 (=100.0%) documents\n",
- "2019-06-17 02:09:13,658 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:13,715 : INFO : adding document #1690000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:22,793 : INFO : discarding 16527 tokens: [('feilacher', 1), ('gelny', 1), ('lonauer', 1), ('musevery', 1), ('schizophrenie', 1), ('elvalle', 1), ('jordanal', 1), ('ristorant', 1), ('antilless', 1), ('addiet', 1)]...\n",
- "2019-06-17 02:09:22,793 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1700000 (=100.0%) documents\n",
- "2019-06-17 02:09:25,056 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:25,113 : INFO : adding document #1700000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:35,572 : INFO : discarding 24258 tokens: [('squirre', 1), ('philaharmonic', 1), ('belosludov', 1), ('betpak', 1), ('seleviniidae', 1), ('bisindo', 1), ('africasan', 1), ('seecon', 1), ('swedensusana', 1), ('unsgab', 1)]...\n",
- "2019-06-17 02:09:35,573 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1710000 (=100.0%) documents\n",
- "2019-06-17 02:09:37,964 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:38,022 : INFO : adding document #1710000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:46,604 : INFO : discarding 22259 tokens: [('oxyurichthys', 1), ('cylindriceps', 1), ('jaarmani', 1), ('blateric', 1), ('chichiawan', 1), ('aadeez', 1), ('hogaya', 1), ('hungami', 1), ('jayantabhai', 1), ('lamhey', 1)]...\n",
- "2019-06-17 02:09:46,604 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1720000 (=100.0%) documents\n",
- "2019-06-17 02:09:48,859 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:48,914 : INFO : adding document #1720000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:09:59,654 : INFO : discarding 25697 tokens: [('liocypris', 1), ('oiqi', 1), ('santeurenne', 1), ('sampcd', 1), ('soleather', 1), ('bonazzo', 1), ('albertsonrobert', 1), ('babcockday', 1), ('blalah', 1), ('dennischarles', 1)]...\n",
- "2019-06-17 02:09:59,655 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1730000 (=100.0%) documents\n",
- "2019-06-17 02:10:01,982 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:02,041 : INFO : adding document #1730000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:10,873 : INFO : discarding 23247 tokens: [('avalancheapril', 1), ('brownhenrik', 1), ('bruinsapril', 1), ('burrsteve', 1), ('calgarymay', 1), ('canadiensapril', 1), ('canadiensmay', 1), ('canucksapril', 1), ('canucksmay', 1), ('carsontomas', 1)]...\n",
- "2019-06-17 02:10:10,874 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1740000 (=100.0%) documents\n",
- "2019-06-17 02:10:13,125 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:13,183 : INFO : adding document #1740000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:20,784 : INFO : discarding 18839 tokens: [('oouè', 1), ('owoé', 1), ('owui', 1), ('hippenings', 1), ('trinití', 1), ('bangkulu', 1), ('kebongan', 1), ('kotudan', 1), ('labobo', 1), ('masepe', 1)]...\n",
- "2019-06-17 02:10:20,784 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1750000 (=100.0%) documents\n",
- "2019-06-17 02:10:23,109 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:23,169 : INFO : adding document #1750000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:10:35,301 : INFO : discarding 29081 tokens: [('actionsfor', 1), ('grupocne', 1), ('houshanpi', 1), ('jiangzicui', 1), ('sanying', 1), ('taipeida', 1), ('taipeiwanhua', 1), ('taipeixinyi', 1), ('zhonghsan', 1), ('三鶯線', 1)]...\n",
- "2019-06-17 02:10:35,302 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1760000 (=100.0%) documents\n",
- "2019-06-17 02:10:37,569 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:37,625 : INFO : adding document #1760000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:47,357 : INFO : discarding 22156 tokens: [('spielerid', 1), ('spielerportrait', 1), ('seriesno', 1), ('hsht', 1), ('utso', 1), ('septier', 1), ('boswtol', 1), ('إنجيل', 1), ('الديـن', 1), ('العشرون', 1)]...\n",
- "2019-06-17 02:10:47,357 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1770000 (=100.0%) documents\n",
- "2019-06-17 02:10:49,680 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:10:49,739 : INFO : adding document #1770000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:00,754 : INFO : discarding 27402 tokens: [('abstractors', 1), ('conclsuions', 1), ('consentability', 1), ('cpwl', 1), ('cpwt', 1), ('fietje', 1), ('meurk', 1), ('synlait', 1), ('tahus', 1), ('waiainiwaniwa', 1)]...\n",
- "2019-06-17 02:11:00,755 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1780000 (=100.0%) documents\n",
- "2019-06-17 02:11:03,029 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:03,085 : INFO : adding document #1780000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:14,130 : INFO : discarding 23400 tokens: [('igumnov', 1), ('xiayin', 1), ('epidemiologie', 1), ('infektionswege', 1), ('intracellularis', 1), ('meningokokken', 1), ('parasitologie', 1), ('banglasdesh', 1), ('irisberto', 1), ('leinier', 1)]...\n",
- "2019-06-17 02:11:14,131 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1790000 (=100.0%) documents\n",
- "2019-06-17 02:11:16,492 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:16,551 : INFO : adding document #1790000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:27,552 : INFO : discarding 21264 tokens: [('moayeri', 1), ('chahriq', 1), ('charik', 1), ('čahrīk', 1), ('aavc', 1), ('aavr', 1), ('chumrark', 1), ('jattawa', 1), ('kradook', 1), ('nhong', 1)]...\n",
- "2019-06-17 02:11:27,553 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1800000 (=100.0%) documents\n",
- "2019-06-17 02:11:29,831 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:29,888 : INFO : adding document #1800000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:41,414 : INFO : discarding 27402 tokens: [('bhajias', 1), ('celantro', 1), ('upvaas', 1), ('vrats', 1), ('hildegun', 1), ('hungnes', 1), ('ingjerd', 1), ('voktor', 1), ('øigarden', 1), ('nanoscientist', 1)]...\n",
- "2019-06-17 02:11:41,415 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1810000 (=100.0%) documents\n",
- "2019-06-17 02:11:43,762 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:43,823 : INFO : adding document #1810000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:54,579 : INFO : discarding 24267 tokens: [('pecsovszky', 1), ('peći', 1), ('sigaudy', 1), ('trémintin', 1), ('nzog', 1), ('branchiura', 1), ('butcheri', 1), ('hardyheads', 1), ('allwörden', 1), ('kumminin', 1)]...\n",
- "2019-06-17 02:11:54,580 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1820000 (=100.0%) documents\n",
- "2019-06-17 02:11:56,856 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:11:56,912 : INFO : adding document #1820000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:07,984 : INFO : discarding 27903 tokens: [('brecenio', 1), ('cantun', 1), ('elryn', 1), ('mastovich', 1), ('chernihov', 1), ('hermanivka', 1), ('liubar', 1), ('radzwiłł', 1), ('trylisy', 1), ('iamsound', 1)]...\n",
- "2019-06-17 02:12:07,985 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1830000 (=100.0%) documents\n",
- "2019-06-17 02:12:10,321 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:10,380 : INFO : adding document #1830000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:21,784 : INFO : discarding 37479 tokens: [('biostat', 1), ('mmjggl', 1), ('refinfo', 1), ('gwenyfyr', 1), ('xibaba', 1), ('legrez', 1), ('marpot', 1), ('nzfsa', 1), ('almiranta', 1), ('canonsl', 1)]...\n",
- "2019-06-17 02:12:21,785 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1840000 (=100.0%) documents\n",
- "2019-06-17 02:12:24,063 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:24,120 : INFO : adding document #1840000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:34,960 : INFO : discarding 24494 tokens: [('uglješići', 1), ('tihovići', 1), ('aegistrust', 1), ('mogthrasir', 1), ('semizovac', 1), ('丹朱', 1), ('collagenolytic', 1), ('hexxhxxgxxh', 1), ('metzincin', 1), ('rwtnnfrey', 1)]...\n",
- "2019-06-17 02:12:34,961 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1850000 (=100.0%) documents\n",
- "2019-06-17 02:12:37,293 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:37,353 : INFO : adding document #1850000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:48,383 : INFO : discarding 23866 tokens: [('ergb', 1), ('berkerolles', 1), ('geisshardt', 1), ('fishingnet', 1), ('polnocne', 1), ('diaquoi', 1), ('gorrissen', 1), ('ramjiawan', 1), ('deweerd', 1), ('latreze', 1)]...\n",
- "2019-06-17 02:12:48,384 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1860000 (=100.0%) documents\n",
- "2019-06-17 02:12:50,659 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:12:50,715 : INFO : adding document #1860000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:02,456 : INFO : discarding 27754 tokens: [('antwork', 1), ('biedrzychowice', 1), ('marpinard', 1), ('bożkowice', 1), ('rayco', 1), ('naglepeter', 1), ('thomaspeter', 1), ('aguis', 1), ('andcoming', 1), ('azzoppardi', 1)]...\n",
- "2019-06-17 02:13:02,457 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1870000 (=100.0%) documents\n",
- "2019-06-17 02:13:04,792 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:04,851 : INFO : adding document #1870000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:16,521 : INFO : discarding 25202 tokens: [('barhaan', 1), ('behoshi', 1), ('fariyaad', 1), ('shaarang', 1), ('carncelyn', 1), ('carnelyn', 1), ('glynarthen', 1), ('löcherbach', 1), ('naturalmodels', 1), ('nossenson', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:13:16,521 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1880000 (=100.0%) documents\n",
- "2019-06-17 02:13:18,812 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:18,868 : INFO : adding document #1880000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:29,580 : INFO : discarding 29893 tokens: [('baldasarre', 1), ('astrith', 1), ('baltsan', 1), ('bempéchat', 1), ('nelsova', 1), ('rachmanninov', 1), ('țapu', 1), ('nantmelin', 1), ('cosmoman', 1), ('freezeman', 1)]...\n",
- "2019-06-17 02:13:29,581 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1890000 (=100.0%) documents\n",
- "2019-06-17 02:13:31,901 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:31,961 : INFO : adding document #1890000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:42,291 : INFO : discarding 26627 tokens: [('beairsto', 1), ('panichkul', 1), ('bentincklaan', 1), ('aluprof', 1), ('jinestra', 1), ('karsiyaka', 1), ('minchanka', 1), ('plantinalonga', 1), ('querard', 1), ('samorodok', 1)]...\n",
- "2019-06-17 02:13:42,292 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1900000 (=100.0%) documents\n",
- "2019-06-17 02:13:44,561 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:44,618 : INFO : adding document #1900000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:53,881 : INFO : discarding 21966 tokens: [('canonade', 1), ('casele', 1), ('rimert', 1), ('laringotomized', 1), ('regoretti', 1), ('ssellini', 1), ('dziwadlo', 1), ('gruzach', 1), ('kaukaz', 1), ('krwia', 1)]...\n",
- "2019-06-17 02:13:53,881 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1910000 (=100.0%) documents\n",
- "2019-06-17 02:13:56,206 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:13:56,265 : INFO : adding document #1910000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:06,554 : INFO : discarding 34791 tokens: [('brazaville', 1), ('mavunza', 1), ('punza', 1), ('polywanhe', 1), ('chisag', 1), ('kaialshnath', 1), ('theatrepasta', 1), ('wanvari', 1), ('verchild', 1), ('ophiochilus', 1)]...\n",
- "2019-06-17 02:14:06,555 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1920000 (=100.0%) documents\n",
- "2019-06-17 02:14:08,834 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:08,891 : INFO : adding document #1920000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:19,157 : INFO : discarding 36304 tokens: [('ボウmō', 1), ('ボン', 1), ('マツ', 1), ('ミャクmyaku', 1), ('ムbu', 1), ('モウ', 1), ('ヤク', 1), ('ヨウyō', 1), ('ラク', 1), ('レンren', 1)]...\n",
- "2019-06-17 02:14:19,158 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1930000 (=100.0%) documents\n",
- "2019-06-17 02:14:21,523 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:21,584 : INFO : adding document #1930000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:32,788 : INFO : discarding 30679 tokens: [('thomton', 1), ('kargów', 1), ('nieciesławice', 1), ('rzędów', 1), ('sieczków', 1), ('drinkie', 1), ('hydroclemancy', 1), ('massachsets', 1), ('metereau', 1), ('nightwalk', 1)]...\n",
- "2019-06-17 02:14:32,789 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1940000 (=100.0%) documents\n",
- "2019-06-17 02:14:35,040 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:35,098 : INFO : adding document #1940000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:45,729 : INFO : discarding 24436 tokens: [('pugliesse', 1), ('pulchripecta', 1), ('ramagii', 1), ('rhinatrema', 1), ('rhodomystax', 1), ('rossalleni', 1), ('rubicundulus', 1), ('salseri', 1), ('sawayae', 1), ('sbherpetologia', 1)]...\n",
- "2019-06-17 02:14:45,729 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1950000 (=100.0%) documents\n",
- "2019-06-17 02:14:48,103 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:48,166 : INFO : adding document #1950000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:14:58,425 : INFO : discarding 25471 tokens: [('mercadefam', 1), ('qualitá', 1), ('surtifruver', 1), ('vierci', 1), ('aurrebranded', 1), ('eziway', 1), ('newmart', 1), ('permewans', 1), ('ritetaken', 1), ('saveway', 1)]...\n",
- "2019-06-17 02:14:58,426 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1960000 (=100.0%) documents\n",
- "2019-06-17 02:15:00,721 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:00,779 : INFO : adding document #1960000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:11,321 : INFO : discarding 24638 tokens: [('caceaga', 1), ('aminaka', 1), ('chapurin', 1), ('dresscamp', 1), ('endovanera', 1), ('fashionweekla', 1), ('girbaud', 1), ('jmary', 1), ('marithe', 1), ('sitbon', 1)]...\n",
- "2019-06-17 02:15:11,322 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1970000 (=100.0%) documents\n",
- "2019-06-17 02:15:13,714 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:13,773 : INFO : adding document #1970000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:24,868 : INFO : discarding 22261 tokens: [('bahujatiya', 1), ('belayat', 1), ('bhumihin', 1), ('landlesses', 1), ('malbar', 1), ('palungwa', 1), ('rastriaya', 1), ('aliglieri', 1), ('antológica', 1), ('bogot', 1)]...\n",
- "2019-06-17 02:15:24,869 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1980000 (=100.0%) documents\n",
- "2019-06-17 02:15:27,171 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:27,229 : INFO : adding document #1980000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:36,756 : INFO : discarding 20757 tokens: [('silalate', 1), ('soole', 1), ('srotri', 1), ('tereda', 1), ('ventakesh', 1), ('vigada', 1), ('vimarsheya', 1), ('eversoll', 1), ('wzat', 1), ('andham', 1)]...\n",
- "2019-06-17 02:15:36,757 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 1990000 (=100.0%) documents\n",
- "2019-06-17 02:15:39,101 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:39,161 : INFO : adding document #1990000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:48,876 : INFO : discarding 22822 tokens: [('volckhausen', 1), ('blundred', 1), ('cdcdcz', 1), ('kedakpenarik', 1), ('zseez', 1), ('signbybee', 1), ('braylin', 1), ('quartterback', 1), ('spydermann', 1), ('straite', 1)]...\n",
- "2019-06-17 02:15:48,876 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2000000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:15:51,140 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:15:51,198 : INFO : adding document #2000000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:02,701 : INFO : discarding 25053 tokens: [('aachar', 1), ('aatisha', 1), ('bakuben', 1), ('shakuben', 1), ('cocomac', 1), ('connectograms', 1), ('connectomic', 1), ('mitk', 1), ('parcellate', 1), ('parcellated', 1)]...\n",
- "2019-06-17 02:16:02,702 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2010000 (=100.0%) documents\n",
- "2019-06-17 02:16:05,073 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:05,133 : INFO : adding document #2010000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:17,012 : INFO : discarding 24649 tokens: [('hoosieroons', 1), ('pondelik', 1), ('mardoni', 1), ('quirri', 1), ('gârbava', 1), ('calían', 1), ('catalve', 1), ('precordillerana', 1), ('tamberías', 1), ('stelnicea', 1)]...\n",
- "2019-06-17 02:16:17,012 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2020000 (=100.0%) documents\n",
- "2019-06-17 02:16:19,322 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:19,379 : INFO : adding document #2020000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:30,743 : INFO : discarding 22978 tokens: [('nyfw', 1), ('latiflora', 1), ('painfull', 1), ('abolencia', 1), ('alaalang', 1), ('amaliang', 1), ('bakasyonista', 1), ('boksingera', 1), ('bumunot', 1), ('clarizza', 1)]...\n",
- "2019-06-17 02:16:30,744 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2030000 (=100.0%) documents\n",
- "2019-06-17 02:16:33,103 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:33,164 : INFO : adding document #2030000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:44,196 : INFO : discarding 22072 tokens: [('gratier', 1), ('myslowitzer', 1), ('walerus', 1), ('bigile', 1), ('theofraste', 1), ('wrooth', 1), ('calastro', 1), ('torreweb', 1), ('ɡlaɪˌsiːmɪk', 1), ('ˈɪndeks', 1)]...\n",
- "2019-06-17 02:16:44,197 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2040000 (=100.0%) documents\n",
- "2019-06-17 02:16:46,476 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:46,533 : INFO : adding document #2040000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:16:57,731 : INFO : discarding 23214 tokens: [('서청원', 1), ('이규택', 1), ('이부영', 1), ('이한동', 1), ('정우택', 1), ('정의화', 1), ('정진석', 1), ('조순', 1), ('진성호', 1), ('최병렬', 1)]...\n",
- "2019-06-17 02:16:57,732 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2050000 (=100.0%) documents\n",
- "2019-06-17 02:17:00,086 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:00,146 : INFO : adding document #2050000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:11,107 : INFO : discarding 27470 tokens: [('йства', 1), ('йственный', 1), ('йство', 1), ('кантони', 1), ('катушках', 1), ('кефи', 1), ('комиссариа', 1), ('контрреволюцией', 1), ('коню', 1), ('космона', 1)]...\n",
- "2019-06-17 02:17:11,108 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2060000 (=100.0%) documents\n",
- "2019-06-17 02:17:13,392 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:13,449 : INFO : adding document #2060000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:24,765 : INFO : discarding 25772 tokens: [('bamsy', 1), ('brummelisa', 1), ('donderhoning', 1), ('dunderhonung', 1), ('growla', 1), ('growlelisa', 1), ('krösus', 1), ('rusken', 1), ('slusken', 1), ('slösus', 1)]...\n",
- "2019-06-17 02:17:24,765 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2070000 (=100.0%) documents\n",
- "2019-06-17 02:17:27,133 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:27,194 : INFO : adding document #2070000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:38,405 : INFO : discarding 24972 tokens: [('nievers', 1), ('pmsk', 1), ('reverdot', 1), ('éesi', 1), ('galtran', 1), ('jallar', 1), ('malpetrim', 1), ('vingador', 1), ('vingadora', 1), ('abbely', 1)]...\n",
- "2019-06-17 02:17:38,406 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2080000 (=100.0%) documents\n",
- "2019-06-17 02:17:40,693 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:40,751 : INFO : adding document #2080000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:51,871 : INFO : discarding 24043 tokens: [('onila', 1), ('popăuți', 1), ('probotosani', 1), ('cheftestants', 1), ('gulave', 1), ('hallofminerals', 1), ('isfahar', 1), ('kallegal', 1), ('padparadschan', 1), ('quasebarth', 1)]...\n",
- "2019-06-17 02:17:51,871 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2090000 (=100.0%) documents\n",
- "2019-06-17 02:17:54,197 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:17:54,257 : INFO : adding document #2090000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:05,141 : INFO : discarding 23911 tokens: [('eithlionn', 1), ('eithneann', 1), ('feindead', 1), ('methers', 1), ('propserous', 1), ('smretha', 1), ('bellebrikhulle', 1), ('bolbryghyll', 1), ('bolbrykhull', 1), ('brichull', 1)]...\n",
- "2019-06-17 02:18:05,141 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2100000 (=100.0%) documents\n",
- "2019-06-17 02:18:07,401 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:07,460 : INFO : adding document #2100000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:17,931 : INFO : discarding 24334 tokens: [('alperovici', 1), ('anselmsson', 1), ('codethic', 1), ('goodcorporation', 1), ('latanécorporate', 1), ('oppewal', 1), ('srscms', 1), ('chevolets', 1), ('chevvies', 1), ('d_c_truckers', 1)]...\n",
- "2019-06-17 02:18:17,931 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2110000 (=100.0%) documents\n",
- "2019-06-17 02:18:20,296 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:20,355 : INFO : adding document #2110000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:31,886 : INFO : discarding 23740 tokens: [('matthathias', 1), ('zitterwackel', 1), ('ankhus', 1), ('calcus', 1), ('jonchets', 1), ('gekkitotsu', 1), ('yüceören', 1), ('ziyaretsuyu', 1), ('adventurewriter', 1), ('codewriter', 1)]...\n",
- "2019-06-17 02:18:31,887 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2120000 (=100.0%) documents\n",
- "2019-06-17 02:18:34,209 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:18:34,271 : INFO : adding document #2120000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:45,538 : INFO : discarding 22833 tokens: [('公共專業聯盟', 1), ('公屋聯會', 1), ('公民力量', 1), ('公民起動', 1), ('前綫', 1), ('前線醫生聯盟', 1), ('北區動源', 1), ('匯點', 1), ('南方民主同盟', 1), ('啟聯資源中心', 1)]...\n",
- "2019-06-17 02:18:45,539 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2130000 (=100.0%) documents\n",
- "2019-06-17 02:18:47,885 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:47,947 : INFO : adding document #2130000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:18:59,112 : INFO : discarding 24827 tokens: [('святую', 1), ('сдпр', 1), ('социа', 1), ('тахрир', 1), ('хизб', 1), ('христианско', 1), ('biancoazzurro', 1), ('europopolari', 1), ('statuarie', 1), ('bdzs', 1)]...\n",
- "2019-06-17 02:18:59,112 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2140000 (=100.0%) documents\n",
- "2019-06-17 02:19:01,391 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:01,448 : INFO : adding document #2140000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:11,201 : INFO : discarding 22537 tokens: [('順風', 1), ('鵬星', 1), ('鶴山', 1), ('bokeno', 1), ('sfyjw', 1), ('sphinxeries', 1), ('metsoja', 1), ('mudaravila', 1), ('pdxdj', 1), ('kihelkonnad', 1)]...\n",
- "2019-06-17 02:19:11,202 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2150000 (=100.0%) documents\n",
- "2019-06-17 02:19:13,523 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:13,584 : INFO : adding document #2150000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:23,793 : INFO : discarding 23576 tokens: [('pedagogiky', 1), ('plány', 1), ('pomaturitné', 1), ('príprava', 1), ('stagess', 1), ('stupňovitá', 1), ('teológie', 1), ('umelecké', 1), ('učebné', 1), ('učilištia', 1)]...\n",
- "2019-06-17 02:19:23,794 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2160000 (=100.0%) documents\n",
- "2019-06-17 02:19:26,082 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:26,141 : INFO : adding document #2160000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:36,576 : INFO : discarding 23941 tokens: [('iberianwildlife', 1), ('mountanieering', 1), ('peakme', 1), ('picoseuropa', 1), ('rebeccos', 1), ('sotrespanorama', 1), ('spanishminerals', 1), ('friedenberger', 1), ('staatsbankrott', 1), ('geakware', 1)]...\n",
- "2019-06-17 02:19:36,577 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2170000 (=100.0%) documents\n",
- "2019-06-17 02:19:38,923 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:38,983 : INFO : adding document #2170000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:49,252 : INFO : discarding 21023 tokens: [('lnteret', 1), ('ramlamboarison', 1), ('rarivoson', 1), ('razakaboana', 1), ('razanamahasoa', 1), ('reallon', 1), ('roelina', 1), ('somacodis', 1), ('هدار', 1), ('alaskaon', 1)]...\n",
- "2019-06-17 02:19:49,253 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2180000 (=100.0%) documents\n",
- "2019-06-17 02:19:51,537 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:19:51,594 : INFO : adding document #2180000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:01,692 : INFO : discarding 25332 tokens: [('completeprimary', 1), ('diniece', 1), ('doctorados', 1), ('isalud', 1), ('orientado', 1), ('stopchildlabor', 1), ('tomarkens', 1), ('ducett', 1), ('hidratos', 1), ('hipertensina', 1)]...\n",
- "2019-06-17 02:20:01,693 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2190000 (=100.0%) documents\n",
- "2019-06-17 02:20:04,029 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:04,089 : INFO : adding document #2190000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:12,498 : INFO : discarding 21898 tokens: [('saktzas', 1), ('saqčï', 1), ('seljoukide', 1), ('telincea', 1), ('ualak', 1), ('valips', 1), ('čeke', 1), ('νοβιόδοῦνος', 1), ('σακτζας', 1), ('fringeguru', 1)]...\n",
- "2019-06-17 02:20:12,498 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2200000 (=100.0%) documents\n",
- "2019-06-17 02:20:14,794 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:14,852 : INFO : adding document #2200000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:24,897 : INFO : discarding 20041 tokens: [('monastirians', 1), ('moncefism', 1), ('moussaouar', 1), ('nejia', 1), ('ouerdanin', 1), ('perillier', 1), ('preponderants', 1), ('satisfacted', 1), ('sebault', 1), ('substancial', 1)]...\n",
- "2019-06-17 02:20:24,897 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2210000 (=100.0%) documents\n",
- "2019-06-17 02:20:27,262 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:27,326 : INFO : adding document #2210000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:37,267 : INFO : discarding 24726 tokens: [('miastozgierz', 1), ('ozogaleria', 1), ('schlösserow', 1), ('bełdowska', 1), ('bratoszewski', 1), ('kozanecki', 1), ('matusiaka', 1), ('syguła', 1), ('harrun', 1), ('waljamaah', 1)]...\n",
- "2019-06-17 02:20:37,268 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2220000 (=100.0%) documents\n",
- "2019-06-17 02:20:39,582 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:39,641 : INFO : adding document #2220000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:51,460 : INFO : discarding 27076 tokens: [('jandík', 1), ('kostanjević', 1), ('kubelíkovi', 1), ('proslavil', 1), ('xxph', 1), ('čaroděj', 1), ('onsciousness', 1), ('paleozolic', 1), ('chicheemaun', 1), ('ferrytobermory', 1)]...\n",
- "2019-06-17 02:20:51,461 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2230000 (=100.0%) documents\n",
- "2019-06-17 02:20:53,804 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:20:53,864 : INFO : adding document #2230000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:01,146 : INFO : discarding 14658 tokens: [('manwŏl', 1), ('mokchong', 1), ('myoji', 1), ('naesŏng', 1), ('osongsan', 1), ('pongmyong', 1), ('posŏn', 1), ('ryeseong', 1), ('samsŏngbŏl', 1), ('seonjukgyo', 1)]...\n",
- "2019-06-17 02:21:01,147 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2240000 (=100.0%) documents\n",
- "2019-06-17 02:21:03,422 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:21:03,479 : INFO : adding document #2240000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:13,303 : INFO : discarding 22535 tokens: [('bańgów', 1), ('fabud', 1), ('przełajka', 1), ('siedminowice', 1), ('siedmionowice', 1), ('dreikaisereck', 1), ('hajdowizna', 1), ('heidowisna', 1), ('krasowy', 1), ('larysz', 1)]...\n",
- "2019-06-17 02:21:13,304 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2250000 (=100.0%) documents\n",
- "2019-06-17 02:21:15,650 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:15,710 : INFO : adding document #2250000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:27,842 : INFO : discarding 26450 tokens: [('surowieckiego', 1), ('tarnodwor', 1), ('trzesn', 1), ('waskotorowy', 1), ('rozwadower', 1), ('struskinska', 1), ('woynarowski', 1), ('zmks', 1), ('oracka', 1), ('alivedelayed', 1)]...\n",
- "2019-06-17 02:21:27,843 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2260000 (=100.0%) documents\n",
- "2019-06-17 02:21:30,135 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:30,194 : INFO : adding document #2260000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:42,435 : INFO : discarding 33452 tokens: [('kylenamoe', 1), ('diablotín', 1), ('attunation', 1), ('chandlerella', 1), ('common_grackle', 1), ('common_grackle_', 1), ('crewhewwhew', 1), ('debonei', 1), ('eufilaria', 1), ('hibleri', 1)]...\n",
- "2019-06-17 02:21:42,436 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2270000 (=100.0%) documents\n",
- "2019-06-17 02:21:44,783 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:44,847 : INFO : adding document #2270000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:55,427 : INFO : discarding 26527 tokens: [('ainol', 1), ('cisoidal', 1), ('cefedem', 1), ('philharminique', 1), ('surimpressions', 1), ('mořkovský', 1), ('sihle', 1), ('lentoasemantie', 1), ('veromies', 1), ('viinikkala', 1)]...\n",
- "2019-06-17 02:21:55,428 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2280000 (=100.0%) documents\n",
- "2019-06-17 02:21:57,716 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:21:57,774 : INFO : adding document #2280000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:09,123 : INFO : discarding 28056 tokens: [('borisovbozhidar', 1), ('duvigneau', 1), ('dîbaion', 1), ('geantănicuşor', 1), ('helmbernd', 1), ('khristovivan', 1), ('margbernd', 1), ('milenkovlazar', 1), ('olbrichtharald', 1), ('zafiuvasile', 1)]...\n",
- "2019-06-17 02:22:09,123 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2290000 (=100.0%) documents\n",
- "2019-06-17 02:22:11,513 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:11,573 : INFO : adding document #2290000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:22,453 : INFO : discarding 25887 tokens: [('donatated', 1), ('norweld', 1), ('androvac', 1), ('gračanka', 1), ('uskoro', 1), ('manktelow', 1), ('gimnasias', 1), ('kliukina', 1), ('myasnikova', 1), ('puddit', 1)]...\n",
- "2019-06-17 02:22:22,454 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2300000 (=100.0%) documents\n",
- "2019-06-17 02:22:24,814 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:24,874 : INFO : adding document #2300000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:33,149 : INFO : discarding 18158 tokens: [('żyrów', 1), ('vagabonden', 1), ('modrzewina', 1), ('alfonsowo', 1), ('zelerie', 1), ('boglewice', 1), ('leżne', 1), ('playerdisplay', 1), ('squadno', 1), ('przydróżek', 1)]...\n",
- "2019-06-17 02:22:33,149 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2310000 (=100.0%) documents\n",
- "2019-06-17 02:22:35,539 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:35,598 : INFO : adding document #2310000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:45,545 : INFO : discarding 23234 tokens: [('messhall', 1), ('kunchha', 1), ('cinderkitty', 1), ('frankencat', 1), ('kittylocks', 1), ('mairon', 1), ('quackling', 1), ('rumpeldogskin', 1), ('scrinchip', 1), ('scroogenip', 1)]...\n",
- "2019-06-17 02:22:45,545 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2320000 (=100.0%) documents\n",
- "2019-06-17 02:22:47,852 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:47,925 : INFO : adding document #2320000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:22:59,010 : INFO : discarding 23127 tokens: [('chebara', 1), ('cheptuech', 1), ('emitik', 1), ('kaplamai', 1), ('kapsibeiywo', 1), ('kaptagich', 1), ('keringet', 1), ('kipsonoi', 1), ('kiptangich', 1), ('kiptororo', 1)]...\n",
- "2019-06-17 02:22:59,010 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2330000 (=100.0%) documents\n",
- "2019-06-17 02:23:01,378 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:01,443 : INFO : adding document #2330000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:12,220 : INFO : discarding 26014 tokens: [('comanești', 1), ('loaieș', 1), ('nemuritai', 1), ('nijūsseiki', 1), ('sutōrī', 1), ('umihoozuki', 1), ('chiracs', 1), ('chévalier', 1), ('bérit', 1), ('relationerne', 1)]...\n",
- "2019-06-17 02:23:12,221 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2340000 (=100.0%) documents\n",
- "2019-06-17 02:23:14,513 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:14,572 : INFO : adding document #2340000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:25,202 : INFO : discarding 22741 tokens: [('burlettas', 1), ('hadju', 1), ('holzmer', 1), ('aughtry', 1), ('dopsovic', 1), ('yukica', 1), ('gipsani', 1), ('ulmanski', 1), ('championsecac', 1), ('kovalcheck', 1)]...\n",
- "2019-06-17 02:23:25,203 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2350000 (=100.0%) documents\n",
- "2019-06-17 02:23:27,550 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:27,617 : INFO : adding document #2350000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:38,883 : INFO : discarding 25777 tokens: [('udlegends', 1), ('schürhoff', 1), ('namaas', 1), ('ladycops', 1), ('spages', 1), ('benisti', 1), ('bascou', 1), ('desallangre', 1), ('timelkam', 1), ('cevaér', 1)]...\n",
- "2019-06-17 02:23:38,884 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2360000 (=100.0%) documents\n",
- "2019-06-17 02:23:41,187 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:23:41,246 : INFO : adding document #2360000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:51,811 : INFO : discarding 25177 tokens: [('cachupoy', 1), ('chipipoy', 1), ('jobelle', 1), ('ludor', 1), ('acquinsicke', 1), ('aquinsicke', 1), ('affinxit', 1), ('afflicti', 1), ('amyraldi', 1), ('apologeticae', 1)]...\n",
- "2019-06-17 02:23:51,812 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2370000 (=100.0%) documents\n",
- "2019-06-17 02:23:54,154 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:23:54,215 : INFO : adding document #2370000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:04,491 : INFO : discarding 28076 tokens: [('daarmee', 1), ('ermee', 1), ('hiermee', 1), ('waarmee', 1), ('azordegan', 1), ('behöva', 1), ('erichsén', 1), ('graviditet', 1), ('jutbring', 1), ('klimatet', 1)]...\n",
- "2019-06-17 02:24:04,492 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2380000 (=100.0%) documents\n",
- "2019-06-17 02:24:06,777 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:06,836 : INFO : adding document #2380000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:18,038 : INFO : discarding 25726 tokens: [('egyek', 1), ('kaló', 1), ('achievieing', 1), ('nožice', 1), ('borgholz', 1), ('bugrova', 1), ('manzhuan', 1), ('pridefc', 1), ('ucimar', 1), ('uvtf', 1)]...\n",
- "2019-06-17 02:24:18,039 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2390000 (=100.0%) documents\n",
- "2019-06-17 02:24:20,408 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:20,468 : INFO : adding document #2390000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:29,558 : INFO : discarding 18552 tokens: [('casciola', 1), ('cubelic', 1), ('hullinger', 1), ('jacober', 1), ('rebouche', 1), ('weidl', 1), ('anzain', 1), ('bordercolordark', 1), ('cuisineres', 1), ('bushlines', 1)]...\n",
- "2019-06-17 02:24:29,559 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2400000 (=100.0%) documents\n",
- "2019-06-17 02:24:31,864 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:31,922 : INFO : adding document #2400000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:42,381 : INFO : discarding 22779 tokens: [('bereyadou', 1), ('reticulons', 1), ('abbehus', 1), ('bouwkunst', 1), ('roohn', 1), ('vakmanschaf', 1), ('voorrang', 1), ('vormgeving', 1), ('winiek', 1), ('strimmed', 1)]...\n",
- "2019-06-17 02:24:42,381 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2410000 (=100.0%) documents\n",
- "2019-06-17 02:24:44,751 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:44,811 : INFO : adding document #2410000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:55,026 : INFO : discarding 23679 tokens: [('diskstation', 1), ('drivechannel', 1), ('flosafe', 1), ('hydrosafe', 1), ('iosafe', 1), ('solopro', 1), ('vaultstor', 1), ('indianarangers', 1), ('chalkidis', 1), ('charambos', 1)]...\n",
- "2019-06-17 02:24:55,027 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2420000 (=100.0%) documents\n",
- "2019-06-17 02:24:57,316 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:24:57,375 : INFO : adding document #2420000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:08,561 : INFO : discarding 28130 tokens: [('durbinstratch', 1), ('kowolski', 1), ('patagorski', 1), ('chaibat', 1), ('grishayeva', 1), ('九月風暴', 1), ('希望你會懂', 1), ('怎么会', 1), ('我有我路向', 1), ('我要衝霄', 1)]...\n",
- "2019-06-17 02:25:08,562 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2430000 (=100.0%) documents\n",
- "2019-06-17 02:25:10,929 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:10,990 : INFO : adding document #2430000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:21,807 : INFO : discarding 26590 tokens: [('crutchleys', 1), ('beachwalking', 1), ('madronetrees', 1), ('sickleback', 1), ('gayz', 1), ('ilgcn', 1), ('kobets', 1), ('olborski', 1), ('qguis', 1), ('radina', 1)]...\n",
- "2019-06-17 02:25:21,808 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2440000 (=100.0%) documents\n",
- "2019-06-17 02:25:24,158 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:24,218 : INFO : adding document #2440000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:34,038 : INFO : discarding 22289 tokens: [('cubebug', 1), ('fungyun', 1), ('mublcom', 1), ('unisec', 1), ('lódi', 1), ('carterwalter', 1), ('khatamigeorge', 1), ('khatamivladimir', 1), ('mondalewarren', 1), ('pahlavifidel', 1)]...\n",
- "2019-06-17 02:25:34,039 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2450000 (=100.0%) documents\n",
- "2019-06-17 02:25:36,423 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:36,483 : INFO : adding document #2450000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:45,996 : INFO : discarding 26300 tokens: [('kérkira', 1), ('welthea', 1), ('printage', 1), ('lichtevreden', 1), ('railtransport', 1), ('saidieh', 1), ('steckelberg', 1), ('westervik', 1), ('aagraham', 1), ('aalorungi', 1)]...\n",
- "2019-06-17 02:25:45,997 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2460000 (=100.0%) documents\n",
- "2019-06-17 02:25:48,344 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:48,404 : INFO : adding document #2460000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:25:57,953 : INFO : discarding 20066 tokens: [('chistovodnoye', 1), ('horoshevsky', 1), ('etsip', 1), ('kangulohi', 1), ('nyango', 1), ('ontananga', 1), ('onyuulaye', 1), ('transkunene', 1), ('trecina', 1), ('joinedsport', 1)]...\n",
- "2019-06-17 02:25:57,953 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2470000 (=100.0%) documents\n",
- "2019-06-17 02:26:00,347 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:00,408 : INFO : adding document #2470000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:08,084 : INFO : discarding 15938 tokens: [('svanån', 1), ('svartabäcken', 1), ('svartijåhkå', 1), ('svartsjöån', 1), ('svedjeån', 1), ('svedån', 1), ('svensbyån', 1), ('svenstaån', 1), ('sverkestaån', 1), ('sverkojåhkå', 1)]...\n",
- "2019-06-17 02:26:08,085 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2480000 (=100.0%) documents\n",
- "2019-06-17 02:26:10,411 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:26:10,469 : INFO : adding document #2480000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:20,333 : INFO : discarding 22127 tokens: [('qrsag', 1), ('ruscinian', 1), ('aesp', 1), ('articficially', 1), ('bymart', 1), ('bymedia', 1), ('nowldef', 1), ('speechline', 1), ('russeltown', 1), ('bogarsettes', 1)]...\n",
- "2019-06-17 02:26:20,334 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2490000 (=100.0%) documents\n",
- "2019-06-17 02:26:22,726 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:22,792 : INFO : adding document #2490000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:33,071 : INFO : discarding 27561 tokens: [('bullshitin', 1), ('calmdown', 1), ('fakeboyz', 1), ('fakegirlz', 1), ('akuana', 1), ('clusterwink', 1), ('cummingian', 1), ('imperforata', 1), ('gosserand', 1), ('argalista', 1)]...\n",
- "2019-06-17 02:26:33,071 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2500000 (=100.0%) documents\n",
- "2019-06-17 02:26:35,419 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:35,478 : INFO : adding document #2500000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:45,641 : INFO : discarding 35918 tokens: [('petona', 1), ('poochaandi', 1), ('quankus', 1), ('robaniños', 1), ('rogovi', 1), ('rézfaszú', 1), ('saalua', 1), ('sarronco', 1), ('shalawlaw', 1), ('stinkini', 1)]...\n",
- "2019-06-17 02:26:45,642 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2510000 (=100.0%) documents\n",
- "2019-06-17 02:26:48,042 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:48,104 : INFO : adding document #2510000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:26:59,619 : INFO : discarding 26829 tokens: [('cristom', 1), ('marmount', 1), ('strengthsfinder', 1), ('abadam', 1), ('damboa', 1), ('gubio', 1), ('guzamala', 1), ('kyari', 1), ('magumeri', 1), ('maidgurui', 1)]...\n",
- "2019-06-17 02:26:59,620 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2520000 (=100.0%) documents\n",
- "2019-06-17 02:27:01,960 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:02,020 : INFO : adding document #2520000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:12,783 : INFO : discarding 26843 tokens: [('duhautlondel', 1), ('dulondel', 1), ('huau', 1), ('laynay', 1), ('pekünlü', 1), ('tarım', 1), ('macmurrary', 1), ('lesznoalfred', 1), ('målillag', 1), ('poolepoole', 1)]...\n",
- "2019-06-17 02:27:12,784 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2530000 (=100.0%) documents\n",
- "2019-06-17 02:27:15,180 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:15,242 : INFO : adding document #2530000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:26,361 : INFO : discarding 26624 tokens: [('jordanxl', 1), ('austrolimborina', 1), ('badioatra', 1), ('furvella', 1), ('fuscosora', 1), ('globulispora', 1), ('gyrizans', 1), ('gyromuscosa', 1), ('limborina', 1), ('mullensis', 1)]...\n",
- "2019-06-17 02:27:26,361 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2540000 (=100.0%) documents\n",
- "2019-06-17 02:27:28,690 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:28,749 : INFO : adding document #2540000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:40,241 : INFO : discarding 26375 tokens: [('fortfreedom', 1), ('zilkowski', 1), ('czepiel', 1), ('aeoniums', 1), ('guardiancardiff', 1), ('autey', 1), ('famousvillains', 1), ('indiependant', 1), ('keavney', 1), ('thepilotsukband', 1)]...\n",
- "2019-06-17 02:27:40,241 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2550000 (=100.0%) documents\n",
- "2019-06-17 02:27:42,610 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:42,671 : INFO : adding document #2550000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:54,046 : INFO : discarding 23861 tokens: [('bonissone', 1), ('cibb', 1), ('piuri', 1), ('tzanakou', 1), ('ogorek', 1), ('estirao', 1), ('dammitt', 1), ('entrancemperium', 1), ('nightspirit', 1), ('secthdaemon', 1)]...\n",
- "2019-06-17 02:27:54,047 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2560000 (=100.0%) documents\n",
- "2019-06-17 02:27:56,370 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:27:56,430 : INFO : adding document #2560000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:07,296 : INFO : discarding 22905 tokens: [('macilwraith', 1), ('maclink', 1), ('tonantis', 1), ('loueckhote', 1), ('wthout', 1), ('tonkes', 1), ('managlore', 1), ('pointwith', 1), ('castigers', 1), ('bobmark', 1)]...\n",
- "2019-06-17 02:28:07,296 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2570000 (=100.0%) documents\n",
- "2019-06-17 02:28:09,666 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:09,727 : INFO : adding document #2570000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:21,382 : INFO : discarding 23544 tokens: [('bagfuls', 1), ('brisks', 1), ('certein', 1), ('chyu', 1), ('duī', 1), ('guāngnián', 1), ('gōngchǐ', 1), ('gōngfēn', 1), ('hǎilǐ', 1), ('jiālùn', 1)]...\n",
- "2019-06-17 02:28:21,383 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2580000 (=100.0%) documents\n",
- "2019-06-17 02:28:23,727 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:23,787 : INFO : adding document #2580000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:34,457 : INFO : discarding 22983 tokens: [('anbuthiru', 1), ('kandithampattu', 1), ('kangeyampatti', 1), ('bizup', 1), ('thiruvar', 1), ('kollangarai', 1), ('abdualla', 1), ('awwp', 1), ('kotrapatti', 1), ('aanandhi', 1)]...\n",
- "2019-06-17 02:28:34,458 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2590000 (=100.0%) documents\n",
- "2019-06-17 02:28:36,855 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:36,917 : INFO : adding document #2590000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:28:49,034 : INFO : discarding 32136 tokens: [('galleghan', 1), ('nohon', 1), ('tajikam', 1), ('zohiri', 1), ('reemus', 1), ('plichta', 1), ('resdesron', 1), ('barganza', 1), ('choodikkum', 1), ('jeevasikha', 1)]...\n",
- "2019-06-17 02:28:49,035 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2600000 (=100.0%) documents\n",
- "2019-06-17 02:28:51,384 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:28:51,444 : INFO : adding document #2600000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:03,056 : INFO : discarding 27672 tokens: [('alchemytoday', 1), ('candiddate', 1), ('mowj', 1), ('makofo', 1), ('medicredit', 1), ('sydenstricter', 1), ('kingsridge', 1), ('schatulga', 1), ('woodbriar', 1), ('harlencys', 1)]...\n",
- "2019-06-17 02:29:03,057 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2610000 (=100.0%) documents\n",
- "2019-06-17 02:29:05,457 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:05,521 : INFO : adding document #2610000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:15,485 : INFO : discarding 22674 tokens: [('mattinale', 1), ('adzé', 1), ('methogo', 1), ('ngoubili', 1), ('ongouori', 1), ('unihopper', 1), ('dadless', 1), ('arenediazonium', 1), ('transmetalated', 1), ('electrounique', 1)]...\n",
- "2019-06-17 02:29:15,486 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2620000 (=100.0%) documents\n",
- "2019-06-17 02:29:17,822 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:17,881 : INFO : adding document #2620000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:28,289 : INFO : discarding 42154 tokens: [('fambach', 1), ('schalkalden', 1), ('chronios', 1), ('comhrogha', 1), ('comroga', 1), ('kleptocractic', 1), ('roghna', 1), ('ˈkoʊraʊə', 1), ('ˈkoʊreɪ', 1), ('χρόνιος', 1)]...\n",
- "2019-06-17 02:29:28,290 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2630000 (=100.0%) documents\n",
- "2019-06-17 02:29:30,668 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:30,731 : INFO : adding document #2630000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:41,677 : INFO : discarding 27255 tokens: [('atrichantha', 1), ('elsiae', 1), ('bryomorphe', 1), ('dolichothrix', 1), ('plumelike', 1), ('calotesta', 1), ('cutinized', 1), ('swartberge', 1), ('denekia', 1), ('disparago', 1)]...\n",
- "2019-06-17 02:29:41,678 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2640000 (=100.0%) documents\n",
- "2019-06-17 02:29:43,999 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:44,060 : INFO : adding document #2640000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:55,117 : INFO : discarding 27862 tokens: [('biswaroop', 1), ('reliableplant', 1), ('smallbiz', 1), ('smartceo', 1), ('thetax', 1), ('wjactv', 1), ('cammies', 1), ('tucaro', 1), ('tucaros', 1), ('otherwords', 1)]...\n",
- "2019-06-17 02:29:55,118 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2650000 (=100.0%) documents\n",
- "2019-06-17 02:29:57,502 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:29:57,564 : INFO : adding document #2650000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:07,991 : INFO : discarding 33106 tokens: [('barrohead', 1), ('exchangetesco', 1), ('milliom', 1), ('oldebarrey', 1), ('gastropexies', 1), ('aryepiglottica', 1), ('microdonation', 1), ('nanopayment', 1), ('nanopayments', 1), ('invokee', 1)]...\n",
- "2019-06-17 02:30:07,991 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2660000 (=100.0%) documents\n",
- "2019-06-17 02:30:10,319 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:10,379 : INFO : adding document #2660000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:20,809 : INFO : discarding 28246 tokens: [('cibotii', 1), ('drynariae', 1), ('epimedii', 1), ('spatholobi', 1), ('淫羊藿', 1), ('狗脊', 1), ('莱菔子', 1), ('骨碎补', 1), ('鸡血藤', 1), ('schnock', 1)]...\n",
- "2019-06-17 02:30:20,810 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2670000 (=100.0%) documents\n",
- "2019-06-17 02:30:23,197 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:23,259 : INFO : adding document #2670000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:32,736 : INFO : discarding 26137 tokens: [('aceratheriini', 1), ('aceratherini', 1), ('acerorhinus', 1), ('zernowi', 1), ('bridgeigator', 1), ('deleece', 1), ('duffbot', 1), ('fatania', 1), ('grusman', 1), ('holowell', 1)]...\n",
- "2019-06-17 02:30:32,737 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2680000 (=100.0%) documents\n",
- "2019-06-17 02:30:35,068 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:35,127 : INFO : adding document #2680000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:47,301 : INFO : discarding 27397 tokens: [('gickelsburg', 1), ('techware', 1), ('akweathercams', 1), ('acquaverde', 1), ('fassolo', 1), ('mazzucchetti', 1), ('montegalletto', 1), ('volabus', 1), ('乱世枭雄', 1), ('争战天下篇', 1)]...\n",
- "2019-06-17 02:30:47,302 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2690000 (=100.0%) documents\n",
- "2019-06-17 02:30:49,668 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:30:49,731 : INFO : adding document #2690000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:01,351 : INFO : discarding 27472 tokens: [('mchess', 1), ('brauereimuseum', 1), ('knipex', 1), ('musäum', 1), ('ukranenland', 1), ('flankmen', 1), ('ruthermore', 1), ('marcouray', 1), ('skytrooopers', 1), ('adenizia', 1)]...\n",
- "2019-06-17 02:31:01,351 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2700000 (=100.0%) documents\n",
- "2019-06-17 02:31:03,679 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:03,740 : INFO : adding document #2700000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:14,922 : INFO : discarding 27338 tokens: [('huabao', 1), ('mamalepot', 1), ('seropta', 1), ('infusini', 1), ('morbidoni', 1), ('ojetti', 1), ('truemetal', 1), ('taisacan', 1), ('gierkink', 1), ('nashman', 1)]...\n",
- "2019-06-17 02:31:14,923 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2710000 (=100.0%) documents\n",
- "2019-06-17 02:31:17,306 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:17,368 : INFO : adding document #2710000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:28,466 : INFO : discarding 31577 tokens: [('rowsby', 1), ('chikinskiy', 1), ('gazanov', 1), ('goplachev', 1), ('kamaltynov', 1), ('khomin', 1), ('samkov', 1), ('metmaterials', 1), ('drumu', 1), ('exces', 1)]...\n",
- "2019-06-17 02:31:28,466 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2720000 (=100.0%) documents\n",
- "2019-06-17 02:31:30,806 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:31:30,866 : INFO : adding document #2720000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:42,095 : INFO : discarding 29476 tokens: [('pacheo', 1), ('rivcoda', 1), ('mcgrigors', 1), ('ledophyllus', 1), ('conselhos', 1), ('corregedores', 1), ('correições', 1), ('emprovedorias', 1), ('北管', 1), ('aftertitles', 1)]...\n",
- "2019-06-17 02:31:42,095 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2730000 (=100.0%) documents\n",
- "2019-06-17 02:31:44,489 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:44,555 : INFO : adding document #2730000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:55,245 : INFO : discarding 26450 tokens: [('oothi', 1), ('organisee', 1), ('eatondale', 1), ('aloalovao', 1), ('paeso', 1), ('poulalo', 1), ('tagaloalagi', 1), ('tunoa', 1), ('𐌓𐌄', 1), ('kumurdoeli', 1)]...\n",
- "2019-06-17 02:31:55,245 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2740000 (=100.0%) documents\n",
- "2019-06-17 02:31:57,559 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:31:57,618 : INFO : adding document #2740000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:08,488 : INFO : discarding 30664 tokens: [('tetraketide', 1), ('greenshards', 1), ('issueof', 1), ('gallequillbox', 1), ('mataraquillbox', 1), ('nicholaswells', 1), ('robsie', 1), ('wobsie', 1), ('ayubid', 1), ('contilla', 1)]...\n",
- "2019-06-17 02:32:08,488 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2750000 (=100.0%) documents\n",
- "2019-06-17 02:32:10,855 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:10,917 : INFO : adding document #2750000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:21,598 : INFO : discarding 24076 tokens: [('mbərδ', 1), ('renɬə', 1), ('sʷv', 1), ('tːa', 1), ('tχu', 1), ('wəc', 1), ('wərč', 1), ('zʷə', 1), ('ćx', 1), ('ħʷə', 1)]...\n",
- "2019-06-17 02:32:21,599 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2760000 (=100.0%) documents\n",
- "2019-06-17 02:32:23,892 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:23,952 : INFO : adding document #2760000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:36,107 : INFO : discarding 23719 tokens: [('fitroyi', 1), ('headslaps', 1), ('noseouts', 1), ('specilegia', 1), ('superciliosis', 1), ('tailslaps', 1), ('pithêkion', 1), ('aesepos', 1), ('granikos', 1), ('heptaporos', 1)]...\n",
- "2019-06-17 02:32:36,108 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2770000 (=100.0%) documents\n",
- "2019-06-17 02:32:38,463 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:38,525 : INFO : adding document #2770000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:49,118 : INFO : discarding 23147 tokens: [('nɵʊə', 1), ('ogatotonu', 1), ('olaʻaga', 1), ('olisaga', 1), ('onogafulu', 1), ('palapalā', 1), ('paʻapaʻa', 1), ('paʻepaʻe', 1), ('penapena', 1), ('peretania', 1)]...\n",
- "2019-06-17 02:32:49,118 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2780000 (=100.0%) documents\n",
- "2019-06-17 02:32:51,441 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:32:51,500 : INFO : adding document #2780000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:01,908 : INFO : discarding 24298 tokens: [('xīqí', 1), ('yígāo', 1), ('yíjìu', 1), ('záo', 1), ('中行氏', 1), ('卓子', 1), ('壽曼', 1), ('奚齊', 1), ('孝公', 1), ('懿公', 1)]...\n",
- "2019-06-17 02:33:01,908 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2790000 (=100.0%) documents\n",
- "2019-06-17 02:33:04,261 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:04,323 : INFO : adding document #2790000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:15,114 : INFO : discarding 26760 tokens: [('mastadon', 1), ('randilovshchina', 1), ('ambulanceaze', 1), ('azadlığın', 1), ('azerbajdzsáni', 1), ('bulmalı', 1), ('dolmalı', 1), ('függetlensége', 1), ('gulmirza', 1), ('gög', 1)]...\n",
- "2019-06-17 02:33:15,115 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2800000 (=100.0%) documents\n",
- "2019-06-17 02:33:17,408 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:17,468 : INFO : adding document #2800000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:28,286 : INFO : discarding 26421 tokens: [('masamâ', 1), ('mouisaamin', 1), ('nagcacasala', 1), ('nagkakasalâ', 1), ('namĩ', 1), ('ortograpíya', 1), ('pagcaharimo', 1), ('paranyake', 1), ('patauarin', 1), ('sapagcat', 1)]...\n",
- "2019-06-17 02:33:28,287 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2810000 (=100.0%) documents\n",
- "2019-06-17 02:33:30,645 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:30,707 : INFO : adding document #2810000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:40,644 : INFO : discarding 30345 tokens: [('약천사', 1), ('운주사', 1), ('유점사', 1), ('은수사', 1), ('정진사', 1), ('종고', 1), ('칠성각', 1), ('탑사', 1), ('통도사', 1), ('파계사', 1)]...\n",
- "2019-06-17 02:33:40,645 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2820000 (=100.0%) documents\n",
- "2019-06-17 02:33:42,961 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:43,022 : INFO : adding document #2820000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:53,725 : INFO : discarding 26816 tokens: [('鍋島氏', 1), ('長宗我部氏', 1), ('長尾氏', 1), ('間部氏', 1), ('阿波細川氏', 1), ('阿部氏', 1), ('韓人氏', 1), ('順徳源氏', 1), ('須田', 1), ('飛鳥部氏', 1)]...\n",
- "2019-06-17 02:33:53,726 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2830000 (=100.0%) documents\n",
- "2019-06-17 02:33:56,131 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:33:56,197 : INFO : adding document #2830000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:07,021 : INFO : discarding 27903 tokens: [('panarboras', 1), ('pinarboras', 1), ('transtoba', 1), ('alazonomastix', 1), ('apocalypticis', 1), ('dissertati', 1), ('echief', 1), ('incorporeis', 1), ('instigatu', 1), ('parrasiastes', 1)]...\n",
- "2019-06-17 02:34:07,022 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2840000 (=100.0%) documents\n",
- "2019-06-17 02:34:09,360 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:09,419 : INFO : adding document #2840000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:34:21,067 : INFO : discarding 32941 tokens: [('jppitoc', 1), ('gozit', 1), ('idpag', 1), ('smpag', 1), ('governmentthen', 1), ('penarrow', 1), ('bóchūn', 1), ('伯春', 1), ('chiryaa', 1), ('dnyaniyaachi', 1)]...\n",
- "2019-06-17 02:34:21,068 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2850000 (=100.0%) documents\n",
- "2019-06-17 02:34:23,420 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:23,482 : INFO : adding document #2850000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:34,178 : INFO : discarding 27780 tokens: [('慧昭', 1), ('李青云', 1), ('殷朝', 1), ('陈俊', 1), ('dermasculpt', 1), ('microcannulas', 1), ('prfm', 1), ('softfil', 1), ('cylindroidal', 1), ('alsenfelt', 1)]...\n",
- "2019-06-17 02:34:34,178 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2860000 (=100.0%) documents\n",
- "2019-06-17 02:34:36,488 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:36,549 : INFO : adding document #2860000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:47,239 : INFO : discarding 26693 tokens: [('dmf_array_pic', 1), ('extensitivity', 1), ('revivisceret', 1), ('bronckos', 1), ('pneumotherapy', 1), ('aranjos', 1), ('leingreith', 1), ('lovrenčević', 1), ('pravaška', 1), ('tiefbrunau', 1)]...\n",
- "2019-06-17 02:34:47,240 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2870000 (=100.0%) documents\n",
- "2019-06-17 02:34:49,607 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:34:49,670 : INFO : adding document #2870000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:00,524 : INFO : discarding 24324 tokens: [('西山區', 1), ('鎮康縣', 1), ('benglong', 1), ('chaikao', 1), ('hongmulin', 1), ('junnong', 1), ('kodaung', 1), ('laobandeng', 1), ('laopulao', 1), ('mahuangqing', 1)]...\n",
- "2019-06-17 02:35:00,525 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2880000 (=100.0%) documents\n",
- "2019-06-17 02:35:02,864 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:02,924 : INFO : adding document #2880000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:13,484 : INFO : discarding 23790 tokens: [('rougemot', 1), ('zeneszerzok', 1), ('lambesq', 1), ('korijenski', 1), ('londonski', 1), ('mirovina', 1), ('serbisms', 1), ('ustašoid', 1), ('camcordera', 1), ('consufessional', 1)]...\n",
- "2019-06-17 02:35:13,485 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2890000 (=100.0%) documents\n",
- "2019-06-17 02:35:15,845 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:15,907 : INFO : adding document #2890000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:26,966 : INFO : discarding 28005 tokens: [('agpit', 1), ('albaguen', 1), ('alcisiras', 1), ('alibatan', 1), ('alidama', 1), ('ambolon', 1), ('anaganahao', 1), ('anahau', 1), ('anajauan', 1), ('anauayan', 1)]...\n",
- "2019-06-17 02:35:26,967 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2900000 (=100.0%) documents\n",
- "2019-06-17 02:35:29,290 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:29,350 : INFO : adding document #2900000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:39,070 : INFO : discarding 21714 tokens: [('accsff', 1), ('krejlgaard', 1), ('síân', 1), ('polydenius', 1), ('gothor', 1), ('cagayen', 1), ('recicourt', 1), ('stotensburg', 1), ('arestus', 1), ('chrysalloideus', 1)]...\n",
- "2019-06-17 02:35:39,071 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2910000 (=100.0%) documents\n",
- "2019-06-17 02:35:41,439 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:41,500 : INFO : adding document #2910000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:52,206 : INFO : discarding 25609 tokens: [('kollektivschuld', 1), ('entreatments', 1), ('frühdynastische', 1), ('kharsag', 1), ('mespotamischen', 1), ('späturuk', 1), ('vorsargonische', 1), ('wäfler', 1), ('andzevatsi', 1), ('tatzatios', 1)]...\n",
- "2019-06-17 02:35:52,207 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2920000 (=100.0%) documents\n",
- "2019-06-17 02:35:54,522 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:35:54,583 : INFO : adding document #2920000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:05,373 : INFO : discarding 27066 tokens: [('estriecher', 1), ('henwoodie', 1), ('milrighall', 1), ('danielsschool', 1), ('feltaschool', 1), ('fruitgrower', 1), ('guernville', 1), ('idnc', 1), ('esice', 1), ('yubanet', 1)]...\n",
- "2019-06-17 02:36:05,374 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2930000 (=100.0%) documents\n",
- "2019-06-17 02:36:07,752 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:07,815 : INFO : adding document #2930000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:18,993 : INFO : discarding 36179 tokens: [('kislyi', 1), ('gersinska', 1), ('ruznamamuna', 1), ('eurychlora', 1), ('accijnshuis', 1), ('saaihal', 1), ('renshuden', 1), ('zdraw', 1), ('mesoptis', 1), ('geosynchrony', 1)]...\n",
- "2019-06-17 02:36:18,994 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2940000 (=100.0%) documents\n",
- "2019-06-17 02:36:21,343 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:21,404 : INFO : adding document #2940000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:31,798 : INFO : discarding 27922 tokens: [('esrailian', 1), ('heraldnet', 1), ('kerkorians', 1), ('modernluxury', 1), ('mptf', 1), ('our_leaders', 1), ('societynewsla', 1), ('uclahealth', 1), ('ellabell', 1), ('doctrates', 1)]...\n",
- "2019-06-17 02:36:31,799 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2950000 (=100.0%) documents\n",
- "2019-06-17 02:36:34,170 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:34,234 : INFO : adding document #2950000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:45,017 : INFO : discarding 26691 tokens: [('khadkwadi', 1), ('kohkadi', 1), ('malvir', 1), ('nsjblg', 1), ('laiphognathus', 1), ('mystakidis', 1), ('negotiaitions', 1), ('pelkas', 1), ('skondras', 1), ('throughball', 1)]...\n",
- "2019-06-17 02:36:45,018 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2960000 (=100.0%) documents\n",
- "2019-06-17 02:36:47,381 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:36:47,442 : INFO : adding document #2960000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:36:58,081 : INFO : discarding 28041 tokens: [('pruytt', 1), ('decrey', 1), ('jilis', 1), ('larrucea', 1), ('thvoted', 1), ('usategui', 1), ('yunior', 1), ('unmoc', 1), ('palifolia', 1), ('uribei', 1)]...\n",
- "2019-06-17 02:36:58,082 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2970000 (=100.0%) documents\n",
- "2019-06-17 02:37:00,455 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:00,519 : INFO : adding document #2970000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:12,094 : INFO : discarding 27421 tokens: [('aadare', 1), ('aadarei', 1), ('abewardhana', 1), ('abewikrama', 1), ('abhirahasa', 1), ('amaraneeya', 1), ('amrasiri', 1), ('aparadhaya', 1), ('ariyapala', 1), ('arthasad', 1)]...\n",
- "2019-06-17 02:37:12,095 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2980000 (=100.0%) documents\n",
- "2019-06-17 02:37:14,436 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:14,496 : INFO : adding document #2980000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:24,923 : INFO : discarding 25159 tokens: [('bablidze', 1), ('bahtadze', 1), ('bezirgani', 1), ('chikobiva', 1), ('dzhigauri', 1), ('hozashvili', 1), ('kalatozashvili', 1), ('khelashvili', 1), ('kukuladze', 1), ('kupunia', 1)]...\n",
- "2019-06-17 02:37:24,924 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 2990000 (=100.0%) documents\n",
- "2019-06-17 02:37:27,309 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:27,378 : INFO : adding document #2990000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:37,664 : INFO : discarding 24507 tokens: [('planetfest', 1), ('channarith', 1), ('equitycam', 1), ('khemrath', 1), ('ouy', 1), ('samreth', 1), ('sdep', 1), ('sochetra', 1), ('sopheaktra', 1), ('sorphea', 1)]...\n",
- "2019-06-17 02:37:37,665 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3000000 (=100.0%) documents\n",
- "2019-06-17 02:37:40,034 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:40,095 : INFO : adding document #3000000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:51,230 : INFO : discarding 28635 tokens: [('boblsleigh', 1), ('rmonline', 1), ('sawton', 1), ('shorex', 1), ('tfpl', 1), ('kalkoa', 1), ('territoryies', 1), ('baulee', 1), ('jenelyn', 1), ('patilano', 1)]...\n",
- "2019-06-17 02:37:51,231 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3010000 (=100.0%) documents\n",
- "2019-06-17 02:37:53,630 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:37:53,693 : INFO : adding document #3010000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:04,247 : INFO : discarding 28471 tokens: [('koneenica', 1), ('ssclib', 1), ('winisis', 1), ('meerwind', 1), ('belovalexander', 1), ('belovmaxim', 1), ('brandsdaljohn', 1), ('centaroland', 1), ('checchigiorgio', 1), ('chekalevaolga', 1)]...\n",
- "2019-06-17 02:38:04,248 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3020000 (=100.0%) documents\n",
- "2019-06-17 02:38:06,595 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:06,655 : INFO : adding document #3020000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:18,054 : INFO : discarding 34272 tokens: [('abzalimv', 1), ('bellahcene', 1), ('cajina', 1), ('gigolashvili', 1), ('khvicha', 1), ('moyshenzon', 1), ('alcanzarte', 1), ('prmrwsa', 1), ('glawinsky', 1), ('luettwitz', 1)]...\n",
- "2019-06-17 02:38:18,055 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3030000 (=100.0%) documents\n",
- "2019-06-17 02:38:20,444 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:20,507 : INFO : adding document #3030000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:31,540 : INFO : discarding 43162 tokens: [('doughmore', 1), ('doulus', 1), ('drumanoo', 1), ('dualaisc', 1), ('dubhcha', 1), ('dunbrattin', 1), ('dunbulcaun', 1), ('dunnycove', 1), ('dunowen', 1), ('duáin', 1)]...\n",
- "2019-06-17 02:38:31,540 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3040000 (=100.0%) documents\n",
- "2019-06-17 02:38:33,891 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:33,953 : INFO : adding document #3040000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:45,028 : INFO : discarding 25951 tokens: [('pitkevitch', 1), ('siefker', 1), ('koerwitz', 1), ('vnda', 1), ('carnein', 1), ('andreaea', 1), ('kildalkey', 1), ('desethyl', 1), ('lirequinil', 1), ('hackapike', 1)]...\n",
- "2019-06-17 02:38:45,029 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3050000 (=100.0%) documents\n",
- "2019-06-17 02:38:47,381 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:47,445 : INFO : adding document #3050000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:38:57,872 : INFO : discarding 26619 tokens: [('dabard', 1), ('nanoreactors', 1), ('adatsi', 1), ('akyeaw', 1), ('asugebe', 1), ('ejissu', 1), ('grusch', 1), ('jasantua', 1), ('klevor', 1), ('lawluwi', 1)]...\n",
- "2019-06-17 02:38:57,873 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3060000 (=100.0%) documents\n",
- "2019-06-17 02:39:00,181 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:00,241 : INFO : adding document #3060000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:10,454 : INFO : discarding 25497 tokens: [('dúch', 1), ('klosterfelde', 1), ('noero', 1), ('montgri', 1), ('olzet', 1), ('saportella', 1), ('seròs', 1), ('tajarast', 1), ('tajarastes', 1), ('ungania', 1)]...\n",
- "2019-06-17 02:39:10,455 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3070000 (=100.0%) documents\n",
- "2019-06-17 02:39:12,826 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:12,888 : INFO : adding document #3070000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:21,497 : INFO : discarding 19938 tokens: [('aksed', 1), ('magpur', 1), ('observedthat', 1), ('bheega', 1), ('kharidenge', 1), ('niloo', 1), ('azeline', 1), ('anera', 1), ('bmena', 1), ('chemonics', 1)]...\n",
- "2019-06-17 02:39:21,498 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3080000 (=100.0%) documents\n",
- "2019-06-17 02:39:23,845 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:23,904 : INFO : adding document #3080000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:31,977 : INFO : discarding 18182 tokens: [('hoiness', 1), ('lysholt', 1), ('vincart', 1), ('henderick', 1), ('coachtrans', 1), ('aerotunel', 1), ('modelom', 1), ('radnom', 1), ('trisonicni', 1), ('ashidiq', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:39:31,978 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3090000 (=100.0%) documents\n",
- "2019-06-17 02:39:34,365 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:34,426 : INFO : adding document #3090000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:43,442 : INFO : discarding 19632 tokens: [('framlimgham', 1), ('hrechyshkin', 1), ('cathinka', 1), ('forsørgelse', 1), ('trængende', 1), ('badpahari', 1), ('bhathia', 1), ('bhiad', 1), ('daskarma', 1), ('divorcces', 1)]...\n",
- "2019-06-17 02:39:43,442 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3100000 (=100.0%) documents\n",
- "2019-06-17 02:39:45,761 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:45,822 : INFO : adding document #3100000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:56,455 : INFO : discarding 25926 tokens: [('laussedat', 1), ('goshay', 1), ('basipinacocytes', 1), ('endopinacocytes', 1), ('exopinacocytes', 1), ('pinacocyte', 1), ('covilla', 1), ('fredmann', 1), ('freidann', 1), ('friedann', 1)]...\n",
- "2019-06-17 02:39:56,456 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3110000 (=100.0%) documents\n",
- "2019-06-17 02:39:58,819 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:39:58,882 : INFO : adding document #3110000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:09,341 : INFO : discarding 28004 tokens: [('cerisii', 1), ('parasquillidae', 1), ('delabassé', 1), ('고향', 1), ('마음의', 1), ('소록도', 1), ('월간', 1), ('한센인들의', 1), ('affarano', 1), ('wcities', 1)]...\n",
- "2019-06-17 02:40:09,342 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3120000 (=100.0%) documents\n",
- "2019-06-17 02:40:11,677 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:11,738 : INFO : adding document #3120000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:22,055 : INFO : discarding 30455 tokens: [('baleegh', 1), ('chootee', 1), ('pairee', 1), ('parega', 1), ('pichal', 1), ('mepaco', 1), ('blaueis_', 1), ('blaueisscharte', 1), ('blaueisspitze', 1), ('kleinkalter', 1)]...\n",
- "2019-06-17 02:40:22,056 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3130000 (=100.0%) documents\n",
- "2019-06-17 02:40:24,459 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:24,522 : INFO : adding document #3130000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:35,314 : INFO : discarding 25918 tokens: [('bharuchgujarat', 1), ('mceligott', 1), ('aalaththoor', 1), ('aaranmula', 1), ('aazhuvaanchery', 1), ('achchan', 1), ('ammannoor', 1), ('ammathiruvadi', 1), ('avanaamanakkal', 1), ('avanangaattu', 1)]...\n",
- "2019-06-17 02:40:35,315 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3140000 (=100.0%) documents\n",
- "2019-06-17 02:40:37,650 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:37,711 : INFO : adding document #3140000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:49,663 : INFO : discarding 27371 tokens: [('rughafa', 1), ('urjuzah', 1), ('krismayr', 1), ('chainel', 1), ('démare', 1), ('epan', 1), ('pévèloise', 1), ('vichot', 1), ('aldun', 1), ('ashran', 1)]...\n",
- "2019-06-17 02:40:49,664 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3150000 (=100.0%) documents\n",
- "2019-06-17 02:40:52,061 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:40:52,126 : INFO : adding document #3150000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:02,870 : INFO : discarding 28999 tokens: [('dedê', 1), ('korzynietz', 1), ('massimilian', 1), ('razundara', 1), ('tjikuzu', 1), ('dische', 1), ('alsphotopage', 1), ('plataspidae', 1), ('plataspididae', 1), ('plataspinae', 1)]...\n",
- "2019-06-17 02:41:02,871 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3160000 (=100.0%) documents\n",
- "2019-06-17 02:41:05,218 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:05,279 : INFO : adding document #3160000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:16,359 : INFO : discarding 28523 tokens: [('avcodes', 1), ('bvidivesites', 1), ('piraikos', 1), ('evocacíones', 1), ('esharp', 1), ('kauanoe', 1), ('mastraquapa', 1), ('reyhner', 1), ('aurophon', 1), ('lukácsházi', 1)]...\n",
- "2019-06-17 02:41:16,360 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3170000 (=100.0%) documents\n",
- "2019-06-17 02:41:18,742 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:18,806 : INFO : adding document #3170000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:33,683 : INFO : discarding 37903 tokens: [('فیڈیلیو', 1), ('لبرل', 1), ('مارکو', 1), ('کافکا', 1), ('medvešček', 1), ('alrounder', 1), ('áda', 1), ('architronito', 1), ('banichitra', 1), ('mohaptra', 1)]...\n",
- "2019-06-17 02:41:33,684 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3180000 (=100.0%) documents\n",
- "2019-06-17 02:41:36,025 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:36,087 : INFO : adding document #3180000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:46,824 : INFO : discarding 26832 tokens: [('kikwajuni', 1), ('wazazi', 1), ('milijic', 1), ('wismayer', 1), ('rvds', 1), ('insamlingsråd', 1), ('praktiken', 1), ('kazankov', 1), ('mariusovich', 1), ('plebey', 1)]...\n",
- "2019-06-17 02:41:46,825 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3190000 (=100.0%) documents\n",
- "2019-06-17 02:41:49,215 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:41:49,285 : INFO : adding document #3190000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:00,258 : INFO : discarding 38035 tokens: [('pikuła', 1), ('steciuk', 1), ('stippa', 1), ('szczerbiński', 1), ('truszczyński', 1), ('wieprzewski', 1), ('wituch', 1), ('zduń', 1), ('zgutczyńska', 1), ('zykun', 1)]...\n",
- "2019-06-17 02:42:00,259 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3200000 (=100.0%) documents\n",
- "2019-06-17 02:42:02,605 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:02,671 : INFO : adding document #3200000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:13,826 : INFO : discarding 38842 tokens: [('kujasalo', 1), ('ropinsalmi', 1), ('saabrücken', 1), ('spielzeugmacher', 1), ('kjhj', 1), ('mudhead', 1), ('dvojci', 1), ('gidrom', 1), ('kecu', 1), ('kruksom', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:42:13,826 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3210000 (=100.0%) documents\n",
- "2019-06-17 02:42:16,242 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:16,306 : INFO : adding document #3210000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:28,231 : INFO : discarding 35017 tokens: [('kistchinski', 1), ('sakhalina', 1), ('almare', 1), ('arsum', 1), ('banlagin', 1), ('biglete', 1), ('bulaho', 1), ('buluburan', 1), ('butucan', 1), ('calatraba', 1)]...\n",
- "2019-06-17 02:42:28,232 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3220000 (=100.0%) documents\n",
- "2019-06-17 02:42:30,583 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:30,654 : INFO : adding document #3220000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:42,849 : INFO : discarding 32908 tokens: [('papankulam', 1), ('pitambaradevi', 1), ('prakrirtita', 1), ('rankati', 1), ('sakshaatkara', 1), ('sarvaviccha', 1), ('sheetati', 1), ('somalapura', 1), ('srinitye', 1), ('sujanati', 1)]...\n",
- "2019-06-17 02:42:42,850 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3230000 (=100.0%) documents\n",
- "2019-06-17 02:42:45,244 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:45,309 : INFO : adding document #3230000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:56,839 : INFO : discarding 27890 tokens: [('ghatistoo', 1), ('illaliki', 1), ('jagadajam', 1), ('jagadekaveera', 1), ('jallanta', 1), ('jhummani', 1), ('kaavaalile', 1), ('kaavyaala', 1), ('kalalai', 1), ('kaluvalu', 1)]...\n",
- "2019-06-17 02:42:56,840 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3240000 (=100.0%) documents\n",
- "2019-06-17 02:42:59,186 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:42:59,248 : INFO : adding document #3240000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:10,972 : INFO : discarding 30873 tokens: [('bvzh', 1), ('domodedevo', 1), ('medf', 1), ('medj', 1), ('rjxd', 1), ('quasidecimal', 1), ('፲፻', 1), ('፼፼', 1), ('伍拾', 1), ('叁拾', 1)]...\n",
- "2019-06-17 02:43:10,973 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3250000 (=100.0%) documents\n",
- "2019-06-17 02:43:13,371 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:13,434 : INFO : adding document #3250000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:24,954 : INFO : discarding 28206 tokens: [('duofeng鐸封', 1), ('fan繁', 1), ('fuling涪陵', 1), ('fu涪', 1), ('fu符', 1), ('guanghan廣漢', 1), ('guangrou廣柔', 1), ('guangtan廣談', 1), ('guchang穀昌', 1), ('gudao故道', 1)]...\n",
- "2019-06-17 02:43:24,955 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3260000 (=100.0%) documents\n",
- "2019-06-17 02:43:27,302 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:27,365 : INFO : adding document #3260000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:38,902 : INFO : discarding 29127 tokens: [('belønner', 1), ('bundskat', 1), ('dannevang', 1), ('destrueret', 1), ('facaden', 1), ('indrømmet', 1), ('inspektører', 1), ('mellemskat', 1), ('miltbrand', 1), ('minimalstat', 1)]...\n",
- "2019-06-17 02:43:38,903 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3270000 (=100.0%) documents\n",
- "2019-06-17 02:43:41,283 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:41,347 : INFO : adding document #3270000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:52,773 : INFO : discarding 32223 tokens: [('qaioma', 1), ('shahaloopa', 1), ('shalidoste', 1), ('statikon', 1), ('toumarsa', 1), ('b__n__r__d', 1), ('cheakill', 1), ('cossic', 1), ('juvenilian', 1), ('mackaws', 1)]...\n",
- "2019-06-17 02:43:52,774 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3280000 (=100.0%) documents\n",
- "2019-06-17 02:43:55,152 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:43:55,214 : INFO : adding document #3280000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:06,201 : INFO : discarding 30184 tokens: [('wanggom', 1), ('ranellucci', 1), ('ulgnuu', 1), ('wirtel', 1), ('gřegořek', 1), ('kostrosky', 1), ('trusdale', 1), ('about_dbo', 1), ('dufauchard', 1), ('freidlander', 1)]...\n",
- "2019-06-17 02:44:06,202 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3290000 (=100.0%) documents\n",
- "2019-06-17 02:44:08,587 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:08,652 : INFO : adding document #3290000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:19,516 : INFO : discarding 29823 tokens: [('flustards', 1), ('hoobub', 1), ('kwuggerbug', 1), ('munkits', 1), ('snather', 1), ('fruhner', 1), ('drumhawnagh', 1), ('inventry', 1), ('epomynous', 1), ('supct', 1)]...\n",
- "2019-06-17 02:44:19,517 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3300000 (=100.0%) documents\n",
- "2019-06-17 02:44:21,850 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:21,912 : INFO : adding document #3300000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:32,362 : INFO : discarding 28360 tokens: [('entlargement', 1), ('façonnent', 1), ('renaissante', 1), ('ablagh', 1), ('ablaghiat', 1), ('khabriyat', 1), ('rujhanaat', 1), ('sahafat', 1), ('zabir', 1), ('aiyekooto', 1)]...\n",
- "2019-06-17 02:44:32,363 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3310000 (=100.0%) documents\n",
- "2019-06-17 02:44:34,754 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:34,818 : INFO : adding document #3310000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:45,131 : INFO : discarding 36119 tokens: [('玫貴人', 1), ('玶常在', 1), ('瑃常在', 1), ('璷貴人', 1), ('璹貴人', 1), ('皇祖祺皇貴太妃', 1), ('皇考吉妃', 1), ('皇考吉嬪', 1), ('皇考婉妃', 1), ('皇考婉貴妃', 1)]...\n",
- "2019-06-17 02:44:45,132 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3320000 (=100.0%) documents\n",
- "2019-06-17 02:44:47,492 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:47,554 : INFO : adding document #3320000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:44:58,041 : INFO : discarding 24655 tokens: [('bouachon', 1), ('gravegeal', 1), ('supéry', 1), ('apogeshna', 1), ('stenialis', 1), ('cyklist', 1), ('plejadellus', 1), ('goumard', 1), ('ieml', 1), ('hameren', 1)]...\n",
- "2019-06-17 02:44:58,041 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3330000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:45:00,407 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:00,470 : INFO : adding document #3330000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:09,725 : INFO : discarding 24843 tokens: [('castillofiel', 1), ('esperamalo', 1), ('malbiz', 1), ('obarenes', 1), ('traspalacio', 1), ('valtracones', 1), ('bannares', 1), ('behetría', 1), ('cachiburrios', 1), ('enecores', 1)]...\n",
- "2019-06-17 02:45:09,726 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3340000 (=100.0%) documents\n",
- "2019-06-17 02:45:12,081 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:12,145 : INFO : adding document #3340000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:22,943 : INFO : discarding 27642 tokens: [('bracaval', 1), ('misseghers', 1), ('steylaerts', 1), ('vyotsky', 1), ('luzuloides', 1), ('kissengen', 1), ('lhowp', 1), ('overpumpage', 1), ('revitalzation', 1), ('karuvampalayam', 1)]...\n",
- "2019-06-17 02:45:22,943 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3350000 (=100.0%) documents\n",
- "2019-06-17 02:45:25,326 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:25,389 : INFO : adding document #3350000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:36,683 : INFO : discarding 29108 tokens: [('narashimhika', 1), ('narasina', 1), ('pratyangira', 1), ('amrin', 1), ('omrin', 1), ('claveriei', 1), ('igneusta', 1), ('illusella', 1), ('lateritialis', 1), ('nanalis', 1)]...\n",
- "2019-06-17 02:45:36,684 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3360000 (=100.0%) documents\n",
- "2019-06-17 02:45:39,045 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:39,108 : INFO : adding document #3360000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:49,781 : INFO : discarding 25930 tokens: [('apersonal', 1), ('behaghel', 1), ('finanziellen', 1), ('geführten', 1), ('hahnzog', 1), ('hanauisches', 1), ('hinterreicher', 1), ('koltermann', 1), ('rodheim', 1), ('sophopolis', 1)]...\n",
- "2019-06-17 02:45:49,782 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3370000 (=100.0%) documents\n",
- "2019-06-17 02:45:52,176 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:45:52,239 : INFO : adding document #3370000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:03,107 : INFO : discarding 29562 tokens: [('przebierała', 1), ('chakuri', 1), ('hasyashi', 1), ('maasaki', 1), ('satojuku', 1), ('vondracek', 1), ('burchess', 1), ('piedros', 1), ('cloudvision', 1), ('eapi', 1)]...\n",
- "2019-06-17 02:46:03,108 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3380000 (=100.0%) documents\n",
- "2019-06-17 02:46:05,471 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:05,533 : INFO : adding document #3380000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:16,753 : INFO : discarding 30933 tokens: [('alghasi', 1), ('asielzoekers', 1), ('haideh', 1), ('halleh', 1), ('moghissi', 1), ('opvang', 1), ('szepietowska', 1), ('austoasiatic', 1), ('aːˀ', 1), ('ːˀ', 1)]...\n",
- "2019-06-17 02:46:16,754 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3390000 (=100.0%) documents\n",
- "2019-06-17 02:46:19,170 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:19,234 : INFO : adding document #3390000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:30,148 : INFO : discarding 25993 tokens: [('czarniewicz', 1), ('viitroul', 1), ('paintedcup', 1), ('beggarmen', 1), ('comindex', 1), ('inclusionality', 1), ('myprescottnow', 1), ('schahar', 1), ('cnhtc', 1), ('jvsengineering', 1)]...\n",
- "2019-06-17 02:46:30,148 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3400000 (=100.0%) documents\n",
- "2019-06-17 02:46:32,520 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:32,582 : INFO : adding document #3400000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:43,531 : INFO : discarding 28505 tokens: [('crncich', 1), ('kirbyson', 1), ('kotavitch', 1), ('segatore', 1), ('ajuereado', 1), ('ahdissawunssa', 1), ('pandisa', 1), ('budowsky', 1), ('craplewe', 1), ('kohinski', 1)]...\n",
- "2019-06-17 02:46:43,532 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3410000 (=100.0%) documents\n",
- "2019-06-17 02:46:45,930 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:45,994 : INFO : adding document #3410000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:57,096 : INFO : discarding 27892 tokens: [('marsaux', 1), ('sauzerau', 1), ('weiermuller', 1), ('boniquit', 1), ('eorthopod', 1), ('ghodadra', 1), ('provcher', 1), ('scapulocostal', 1), ('batuyeva', 1), ('krasnegor', 1)]...\n",
- "2019-06-17 02:46:57,096 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3420000 (=100.0%) documents\n",
- "2019-06-17 02:46:59,502 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:46:59,565 : INFO : adding document #3420000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:10,160 : INFO : discarding 25946 tokens: [('rezāābād', 1), ('ebergény', 1), ('ebergényi', 1), ('telekes', 1), ('bardvāl', 1), ('bardwāl', 1), ('bārd', 1), ('afirmo', 1), ('afronauta', 1), ('amorágio', 1)]...\n",
- "2019-06-17 02:47:10,160 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3430000 (=100.0%) documents\n",
- "2019-06-17 02:47:12,569 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:12,634 : INFO : adding document #3430000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:23,290 : INFO : discarding 26733 tokens: [('anupham', 1), ('badtameezi', 1), ('banake', 1), ('digare', 1), ('dilipsinh', 1), ('narendrasinh', 1), ('padhkar', 1), ('parvar', 1), ('rakhkar', 1), ('vazgenovich', 1)]...\n",
- "2019-06-17 02:47:23,291 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3440000 (=100.0%) documents\n",
- "2019-06-17 02:47:25,671 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:25,738 : INFO : adding document #3440000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:36,062 : INFO : discarding 25751 tokens: [('claudiany', 1), ('wunneberg', 1), ('telender', 1), ('amichetta', 1), ('apolytrosis', 1), ('clamide', 1), ('giacovelli', 1), ('lmages', 1), ('milionari', 1), ('séductrices', 1)]...\n",
- "2019-06-17 02:47:36,063 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3450000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:47:38,496 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:38,560 : INFO : adding document #3450000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:48,902 : INFO : discarding 26749 tokens: [('brentz', 1), ('vogelbach', 1), ('lyzovka', 1), ('berromichael', 1), ('bördelandhalle', 1), ('kreissporthalle', 1), ('sparkassenarena', 1), ('econavi', 1), ('setsuden', 1), ('節電', 1)]...\n",
- "2019-06-17 02:47:48,903 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3460000 (=100.0%) documents\n",
- "2019-06-17 02:47:51,285 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:47:51,347 : INFO : adding document #3460000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:02,082 : INFO : discarding 26165 tokens: [('mīshwand', 1), ('bhráid', 1), ('fáscadh', 1), ('ghealóg', 1), ('lúiche', 1), ('stiúidió', 1), ('khodādādī', 1), ('comelycrane', 1), ('panāh', 1), ('sheykha', 1)]...\n",
- "2019-06-17 02:48:02,082 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3470000 (=100.0%) documents\n",
- "2019-06-17 02:48:04,541 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:04,605 : INFO : adding document #3470000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:15,938 : INFO : discarding 26201 tokens: [('conheci', 1), ('popozuda', 1), ('popozudas', 1), ('popozão', 1), ('adpi', 1), ('bisalaksha', 1), ('fakirdas', 1), ('jadabendra', 1), ('acidiscabies', 1), ('oospora', 1)]...\n",
- "2019-06-17 02:48:15,939 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3480000 (=100.0%) documents\n",
- "2019-06-17 02:48:18,334 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:18,396 : INFO : adding document #3480000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:29,681 : INFO : discarding 26416 tokens: [('layingout', 1), ('camellifolia', 1), ('eucocconotini', 1), ('pterophylla', 1), ('tegminal', 1), ('kanfarensu', 1), ('myuujikku', 1), ('shalestone', 1), ('ehrnström', 1), ('jahnzon', 1)]...\n",
- "2019-06-17 02:48:29,682 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3490000 (=100.0%) documents\n",
- "2019-06-17 02:48:32,111 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:32,184 : INFO : adding document #3490000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:42,726 : INFO : discarding 28411 tokens: [('presidenciable', 1), ('propuestas', 1), ('plesiosaurians', 1), ('fivebasalmost', 1), ('stratesaurus', 1), ('eoplesiosaurus', 1), ('thalassiodracon', 1), ('ttncm', 1), ('mcvicars', 1), ('bolognawelcome', 1)]...\n",
- "2019-06-17 02:48:42,727 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3500000 (=100.0%) documents\n",
- "2019-06-17 02:48:45,121 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:45,187 : INFO : adding document #3500000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:55,756 : INFO : discarding 30495 tokens: [('aeltgen', 1), ('duyvené', 1), ('eerstensz', 1), ('verhorst', 1), ('vermaarde', 1), ('wapenveldt', 1), ('akcurun', 1), ('içimde', 1), ('sarayim', 1), ('ufuklar', 1)]...\n",
- "2019-06-17 02:48:55,756 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3510000 (=100.0%) documents\n",
- "2019-06-17 02:48:58,158 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:48:58,222 : INFO : adding document #3510000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:08,356 : INFO : discarding 25216 tokens: [('defoliella', 1), ('deplatsella', 1), ('ivashka', 1), ('karatchenia', 1), ('katliarov', 1), ('kazhera', 1), ('samoseiko', 1), ('skrypko', 1), ('tarasevitch', 1), ('bigaglia', 1)]...\n",
- "2019-06-17 02:49:08,357 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3520000 (=100.0%) documents\n",
- "2019-06-17 02:49:10,748 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:10,810 : INFO : adding document #3520000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:21,046 : INFO : discarding 28565 tokens: [('pratopascolo', 1), ('dvornićandrija', 1), ('kukurić', 1), ('popovićandrija', 1), ('redžepagić', 1), ('oghlan', 1), ('oghlān', 1), ('owghlān', 1), ('uqlān', 1), ('chaveshi', 1)]...\n",
- "2019-06-17 02:49:21,046 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3530000 (=100.0%) documents\n",
- "2019-06-17 02:49:23,479 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:23,544 : INFO : adding document #3530000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:34,007 : INFO : discarding 27134 tokens: [('napur', 1), ('robidaux', 1), ('gabana', 1), ('hunnypot', 1), ('lynguistic', 1), ('micahtron', 1), ('rashaud', 1), ('traxxx', 1), ('xxplosive', 1), ('alvinczy', 1)]...\n",
- "2019-06-17 02:49:34,008 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3540000 (=100.0%) documents\n",
- "2019-06-17 02:49:36,439 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:36,502 : INFO : adding document #3540000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:45,702 : INFO : discarding 21235 tokens: [('roquigny', 1), ('tchequie', 1), ('teamtendo', 1), ('vazarely', 1), ('viilette', 1), ('jeebonjoyi', 1), ('börnin', 1), ('ferðalag', 1), ('nýraunsæi', 1), ('brucescott', 1)]...\n",
- "2019-06-17 02:49:45,703 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3550000 (=100.0%) documents\n",
- "2019-06-17 02:49:48,152 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:48,216 : INFO : adding document #3550000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:49:58,066 : INFO : discarding 22586 tokens: [('butne', 1), ('geisterregen', 1), ('krockumay', 1), ('schritteneon', 1), ('weigendorfer', 1), ('soundeq', 1), ('meryland', 1), ('arharensis', 1), ('arkharavia', 1), ('jiayinensis', 1)]...\n",
- "2019-06-17 02:49:58,067 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3560000 (=100.0%) documents\n",
- "2019-06-17 02:50:00,458 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:00,521 : INFO : adding document #3560000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:10,721 : INFO : discarding 24729 tokens: [('cantomundo', 1), ('iptd', 1), ('loglogistic', 1), ('tūshan', 1), ('bolingbrokes', 1), ('stranraers', 1), ('laviña', 1), ('maḩallēh', 1), ('zangian', 1), ('zangiyan', 1)]...\n",
- "2019-06-17 02:50:10,722 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3570000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:50:13,164 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:13,228 : INFO : adding document #3570000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:22,516 : INFO : discarding 24039 tokens: [('locavorism', 1), ('marketwagon', 1), ('budimac', 1), ('iswym', 1), ('misoprostal', 1), ('overerrupted', 1), ('tarsorraphy', 1), ('langadiji', 1), ('ngouka', 1), ('gravitonics', 1)]...\n",
- "2019-06-17 02:50:22,517 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3580000 (=100.0%) documents\n",
- "2019-06-17 02:50:24,912 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:24,976 : INFO : adding document #3580000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:34,125 : INFO : discarding 23097 tokens: [('savonas', 1), ('amaudy', 1), ('ashiesteil', 1), ('cabbara', 1), ('goloijigi', 1), ('gouroumo', 1), ('ludamar', 1), ('tomboocoutoo', 1), ('toomboucouton', 1), ('claudiani', 1)]...\n",
- "2019-06-17 02:50:34,126 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3590000 (=100.0%) documents\n",
- "2019-06-17 02:50:36,558 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:36,622 : INFO : adding document #3590000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:46,707 : INFO : discarding 28469 tokens: [('童说', 1), ('藕絲步雲履', 1), ('蛟魔王', 1), ('避馬瘟', 1), ('鎖子黃金甲', 1), ('馬騮精', 1), ('鬥戰勝佛', 1), ('鳳翅紫金冠', 1), ('鵬魔王', 1), ('齊天大聖', 1)]...\n",
- "2019-06-17 02:50:46,708 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3600000 (=100.0%) documents\n",
- "2019-06-17 02:50:49,094 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:49,158 : INFO : adding document #3600000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:50:57,807 : INFO : discarding 21590 tokens: [('レジスチル', 1), ('レジロック', 1), ('ロープウェイ', 1), ('日照り', 1), ('海の科学博物館', 1), ('海を越えて', 1), ('番道路', 1), ('目覚める超古代ポケモン', 1), ('ceratodonti', 1), ('dipnoiformes', 1)]...\n",
- "2019-06-17 02:50:57,808 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3610000 (=100.0%) documents\n",
- "2019-06-17 02:51:00,208 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:00,280 : INFO : adding document #3610000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:10,294 : INFO : discarding 26342 tokens: [('長量', 1), ('高辻', 1), ('sennōda', 1), ('周仁親王', 1), ('方仁', 1), ('永高女王', 1), ('誠仁親王', 1), ('西園寺公衡', 1), ('jurakuin', 1), ('後二条天皇八年', 1)]...\n",
- "2019-06-17 02:51:10,294 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3620000 (=100.0%) documents\n",
- "2019-06-17 02:51:12,690 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:12,752 : INFO : adding document #3620000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:22,716 : INFO : discarding 32762 tokens: [('orhul', 1), ('paramutabilis', 1), ('patersonius', 1), ('pentacarpos', 1), ('sinosyriacus', 1), ('soobolo', 1), ('bopmart', 1), ('guamúchili', 1), ('narawane', 1), ('pharmacopœias', 1)]...\n",
- "2019-06-17 02:51:22,717 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3630000 (=100.0%) documents\n",
- "2019-06-17 02:51:25,136 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:25,201 : INFO : adding document #3630000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:34,799 : INFO : discarding 24320 tokens: [('monroejohn', 1), ('polkzachary', 1), ('presentnominee', 1), ('pxangela', 1), ('pxanna', 1), ('pxazie', 1), ('pxcarmi', 1), ('pxcatalina', 1), ('pxellis', 1), ('pxenos', 1)]...\n",
- "2019-06-17 02:51:34,799 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3640000 (=100.0%) documents\n",
- "2019-06-17 02:51:37,159 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:37,221 : INFO : adding document #3640000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:47,273 : INFO : discarding 29540 tokens: [('calbazas', 1), ('adlerapotheke', 1), ('badurad', 1), ('marienloh', 1), ('paderhalle', 1), ('paramlee', 1), ('funcspec', 1), ('marutan', 1), ('wikiref', 1), ('västänfjärd', 1)]...\n",
- "2019-06-17 02:51:47,274 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3650000 (=100.0%) documents\n",
- "2019-06-17 02:51:49,684 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:49,748 : INFO : adding document #3650000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:51:58,918 : INFO : discarding 26459 tokens: [('chowając', 1), ('chowających', 1), ('currēns', 1), ('dividita', 1), ('dividota', 1), ('dormiebat', 1), ('dormientem', 1), ('eidamas', 1), ('eidavus', 1), ('eidavęs', 1)]...\n",
- "2019-06-17 02:51:58,919 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3660000 (=100.0%) documents\n",
- "2019-06-17 02:52:01,270 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:01,337 : INFO : adding document #3660000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:10,263 : INFO : discarding 23453 tokens: [('σπλαγχνισθεὶς', 1), ('ἀπῆλθεν', 1), ('ἐδεήθη', 1), ('ἐκαθαρίσθη', 1), ('ἐκτείνας', 1), ('ἥψατο', 1), ('ἰδ', 1), ('ὸς', 1), ('ὺς', 1), ('ὼν', 1)]...\n",
- "2019-06-17 02:52:10,264 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3670000 (=100.0%) documents\n",
- "2019-06-17 02:52:12,663 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:12,729 : INFO : adding document #3670000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:22,781 : INFO : discarding 26559 tokens: [('dernova', 1), ('enhancings', 1), ('lettberg', 1), ('limontov', 1), ('sabbanagh', 1), ('полудержавный', 1), ('allobrigicus', 1), ('gaddums', 1), ('makorori', 1), ('mākaraka', 1)]...\n",
- "2019-06-17 02:52:22,782 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3680000 (=100.0%) documents\n",
- "2019-06-17 02:52:25,161 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:25,223 : INFO : adding document #3680000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:35,846 : INFO : discarding 29378 tokens: [('clariperú', 1), ('fragmentango', 1), ('gläß', 1), ('gondosch', 1), ('jrimián', 1), ('liebergmilonga', 1), ('mihovilcevic', 1), ('minitangos', 1), ('mozartango', 1), ('neugierde', 1)]...\n",
- "2019-06-17 02:52:35,847 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3690000 (=100.0%) documents\n",
- "2019-06-17 02:52:38,248 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:52:38,312 : INFO : adding document #3690000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:48,983 : INFO : discarding 28241 tokens: [('héligoland', 1), ('ortzen', 1), ('sabalot', 1), ('vulliez', 1), ('aquascape', 1), ('aquascapes', 1), ('eichornia', 1), ('plantedtank', 1), ('rametes', 1), ('spongeplant', 1)]...\n",
- "2019-06-17 02:52:48,983 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3700000 (=100.0%) documents\n",
- "2019-06-17 02:52:51,365 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:52:51,427 : INFO : adding document #3700000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:01,619 : INFO : discarding 27365 tokens: [('kaganoff', 1), ('vivdly', 1), ('writers_aa', 1), ('helzarin', 1), ('landermere', 1), ('vukšić', 1), ('cowels', 1), ('curiak', 1), ('endomorph', 1), ('fatbikes', 1)]...\n",
- "2019-06-17 02:53:01,620 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3710000 (=100.0%) documents\n",
- "2019-06-17 02:53:04,028 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:04,092 : INFO : adding document #3710000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:14,555 : INFO : discarding 27137 tokens: [('aaghosham', 1), ('anukudumbam', 1), ('aparenmar', 1), ('chekkan', 1), ('chengkotta', 1), ('dineshan', 1), ('evidingananu', 1), ('filmstaar', 1), ('gulumal', 1), ('jackiechan', 1)]...\n",
- "2019-06-17 02:53:14,556 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3720000 (=100.0%) documents\n",
- "2019-06-17 02:53:16,952 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:17,014 : INFO : adding document #3720000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:28,108 : INFO : discarding 29202 tokens: [('humaston', 1), ('andrinalis', 1), ('affaiblissement', 1), ('biétrix', 1), ('christoflour', 1), ('infaillibilité', 1), ('légitimité', 1), ('corintians', 1), ('analyta', 1), ('gammalis', 1)]...\n",
- "2019-06-17 02:53:28,110 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3730000 (=100.0%) documents\n",
- "2019-06-17 02:53:30,588 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:30,653 : INFO : adding document #3730000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:41,099 : INFO : discarding 26818 tokens: [('housemark', 1), ('kunigliga', 1), ('nordenvall', 1), ('serafimerorden', 1), ('acommerce', 1), ('ecomeye', 1), ('ecommerceiq', 1), ('iprice', 1), ('itruemart', 1), ('pricepanda', 1)]...\n",
- "2019-06-17 02:53:41,099 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3740000 (=100.0%) documents\n",
- "2019-06-17 02:53:43,533 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:43,596 : INFO : adding document #3740000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:54,076 : INFO : discarding 25881 tokens: [('etüken', 1), ('maliyan', 1), ('ahaf', 1), ('aswoon', 1), ('gorskok', 1), ('inflaing', 1), ('kumsan', 1), ('porforming', 1), ('preeeminent', 1), ('서울시립미술관', 1)]...\n",
- "2019-06-17 02:53:54,077 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3750000 (=100.0%) documents\n",
- "2019-06-17 02:53:56,504 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:53:56,568 : INFO : adding document #3750000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:06,940 : INFO : discarding 29144 tokens: [('araweelo', 1), ('bartamaha', 1), ('somaliwood', 1), ('wargelin', 1), ('xaaskayga', 1), ('kabacchi', 1), ('slowburners', 1), ('camarathon', 1), ('ubbs', 1), ('gepeto', 1)]...\n",
- "2019-06-17 02:54:06,941 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3760000 (=100.0%) documents\n",
- "2019-06-17 02:54:09,354 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:09,418 : INFO : adding document #3760000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:20,119 : INFO : discarding 25647 tokens: [('altantuya', 1), ('americk', 1), ('shaariibuu', 1), ('shariibugin', 1), ('yokeheswarem', 1), ('yokheswarem', 1), ('kuaiwa', 1), ('mahakian', 1), ('danielssøn', 1), ('lungegården', 1)]...\n",
- "2019-06-17 02:54:20,119 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3770000 (=100.0%) documents\n",
- "2019-06-17 02:54:22,519 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:22,584 : INFO : adding document #3770000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:31,919 : INFO : discarding 22180 tokens: [('ssieke', 1), ('bezaury', 1), ('ghurum', 1), ('gitanjana', 1), ('kimemia', 1), ('mazrouie', 1), ('mottaleb', 1), ('nibigira', 1), ('sezibera', 1), ('sibabrata', 1)]...\n",
- "2019-06-17 02:54:31,920 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3780000 (=100.0%) documents\n",
- "2019-06-17 02:54:34,305 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:34,369 : INFO : adding document #3780000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:43,930 : INFO : discarding 23709 tokens: [('alivenotdead', 1), ('ptu女警之偶然陷阱', 1), ('redgrass', 1), ('youlai', 1), ('ボス', 1), ('三不管', 1), ('不再讓你孤單', 1), ('不死心靈', 1), ('中華兒女', 1), ('亡命天涯', 1)]...\n",
- "2019-06-17 02:54:43,931 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3790000 (=100.0%) documents\n",
- "2019-06-17 02:54:46,340 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:46,406 : INFO : adding document #3790000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:56,350 : INFO : discarding 23604 tokens: [('truthclaim', 1), ('ccmds', 1), ('dustav', 1), ('hastam', 1), ('luftur', 1), ('jlnf', 1), ('jnmf', 1), ('aeit', 1), ('issotl', 1), ('iswnetwork', 1)]...\n",
- "2019-06-17 02:54:56,350 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3800000 (=100.0%) documents\n",
- "2019-06-17 02:54:58,774 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:54:58,836 : INFO : adding document #3800000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:09,600 : INFO : discarding 25686 tokens: [('espiritistas', 1), ('metapsíquicos', 1), ('malhstedt', 1), ('cutstone', 1), ('astodia', 1), ('hargovandas', 1), ('lakhmichand', 1), ('nathiba', 1), ('nhlmmc', 1), ('saraspur', 1)]...\n",
- "2019-06-17 02:55:09,601 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3810000 (=100.0%) documents\n",
- "2019-06-17 02:55:12,086 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:12,152 : INFO : adding document #3810000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:55:23,210 : INFO : discarding 28110 tokens: [('ophisoma', 1), ('noctuélites', 1), ('arulik', 1), ('hakafashist', 1), ('արևելք', 1), ('kedou', 1), ('đẩu', 1), ('消歧义', 1), ('蝌蚪书', 1), ('蝌蚪文', 1)]...\n",
- "2019-06-17 02:55:23,211 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3820000 (=100.0%) documents\n",
- "2019-06-17 02:55:25,607 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:25,670 : INFO : adding document #3820000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:35,970 : INFO : discarding 24418 tokens: [('bedimo', 1), ('djeugoué', 1), ('guémo', 1), ('outleaping', 1), ('miscontrolled', 1), ('diomandé', 1), ('conmebolafc', 1), ('achilier', 1), ('frickson', 1), ('mažić', 1)]...\n",
- "2019-06-17 02:55:35,971 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3830000 (=100.0%) documents\n",
- "2019-06-17 02:55:38,371 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:38,435 : INFO : adding document #3830000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:49,142 : INFO : discarding 25102 tokens: [('beyhadh', 1), ('vighnaharta', 1), ('dotexe', 1), ('leewise', 1), ('kotay', 1), ('platinotypes', 1), ('shillea', 1), ('vorsts', 1), ('aktihanoglu', 1), ('announcents', 1)]...\n",
- "2019-06-17 02:55:49,143 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3840000 (=100.0%) documents\n",
- "2019-06-17 02:55:51,647 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:55:51,709 : INFO : adding document #3840000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:01,595 : INFO : discarding 24115 tokens: [('winterclimb', 1), ('tapdk', 1), ('theaterjones', 1), ('contrastandard', 1), ('yutsis', 1), ('hyperware', 1), ('playpak', 1), ('undetale', 1), ('uniwars', 1), ('valtric', 1)]...\n",
- "2019-06-17 02:56:01,596 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3850000 (=100.0%) documents\n",
- "2019-06-17 02:56:03,989 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:04,054 : INFO : adding document #3850000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:14,348 : INFO : discarding 23370 tokens: [('wtcta', 1), ('adelantes', 1), ('leckliter', 1), ('dolerosaurus', 1), ('trauthi', 1), ('nordicbet', 1), ('ulbjerg', 1), ('ambey', 1), ('bikta', 1), ('jeyraj', 1)]...\n",
- "2019-06-17 02:56:14,349 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3860000 (=100.0%) documents\n",
- "2019-06-17 02:56:16,748 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:16,810 : INFO : adding document #3860000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:26,825 : INFO : discarding 22713 tokens: [('berkele', 1), ('bucaneering', 1), ('chonica', 1), ('dersleye', 1), ('glamorganiae', 1), ('glastoniensibus', 1), ('immediateley', 1), ('kingeswod', 1), ('melkesham', 1), ('morganiae', 1)]...\n",
- "2019-06-17 02:56:26,825 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3870000 (=100.0%) documents\n",
- "2019-06-17 02:56:29,237 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:29,301 : INFO : adding document #3870000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:39,829 : INFO : discarding 27586 tokens: [('dopfunten', 1), ('fjärdedel', 1), ('förm', 1), ('lokrume', 1), ('löderups', 1), ('trydez', 1), ('appestati', 1), ('comilia', 1), ('exhibied', 1), ('fromboliere', 1)]...\n",
- "2019-06-17 02:56:39,830 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3880000 (=100.0%) documents\n",
- "2019-06-17 02:56:42,237 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:42,300 : INFO : adding document #3880000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:51,826 : INFO : discarding 26929 tokens: [('portaloos', 1), ('savae', 1), ('itampolo', 1), ('marary', 1), ('vitane', 1), ('kielyr', 1), ('bargainings', 1), ('cassetty', 1), ('hurburgh', 1), ('friskoler', 1)]...\n",
- "2019-06-17 02:56:51,827 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3890000 (=100.0%) documents\n",
- "2019-06-17 02:56:54,247 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:56:54,312 : INFO : adding document #3890000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:03,775 : INFO : discarding 28098 tokens: [('cowters', 1), ('cuóheres', 1), ('chihheng', 1), ('itoop', 1), ('josafath', 1), ('kolosowsky', 1), ('oistat', 1), ('oistt', 1), ('rostampour', 1), ('scenofest', 1)]...\n",
- "2019-06-17 02:57:03,776 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3900000 (=100.0%) documents\n",
- "2019-06-17 02:57:06,184 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:06,247 : INFO : adding document #3900000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:16,195 : INFO : discarding 33922 tokens: [('biothickeners', 1), ('fructansucrases', 1), ('hardaliye', 1), ('hypercatalogue', 1), ('mindensis', 1), ('reuteran', 1), ('rpoa', 1), ('izontli', 1), ('methylosphaera', 1), ('calimary', 1)]...\n",
- "2019-06-17 02:57:16,196 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3910000 (=100.0%) documents\n",
- "2019-06-17 02:57:18,609 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:18,675 : INFO : adding document #3910000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:28,256 : INFO : discarding 27646 tokens: [('kocakaya', 1), ('pencere', 1), ('dralethamaybank', 1), ('kechie', 1), ('mejas', 1), ('gulgasht', 1), ('caricaturen', 1), ('critiek', 1), ('identificatie', 1), ('mannenhuis', 1)]...\n",
- "2019-06-17 02:57:28,257 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3920000 (=100.0%) documents\n",
- "2019-06-17 02:57:30,646 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:30,707 : INFO : adding document #3920000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:39,997 : INFO : discarding 26186 tokens: [('sirigs', 1), ('sxoles', 1), ('tanagraies', 1), ('tmimata', 1), ('vrefonipiakoi', 1), ('arbëna', 1), ('arvanítika', 1), ('asája', 1), ('atía', 1), ('atíre', 1)]...\n",
- "2019-06-17 02:57:39,998 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3930000 (=100.0%) documents\n",
- "2019-06-17 02:57:42,430 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:42,495 : INFO : adding document #3930000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:51,738 : INFO : discarding 23081 tokens: [('dcccclxii', 1), ('figureâ', 1), ('figuræ', 1), ('ηιδωλων', 1), ('ιων', 1), ('iserohn', 1), ('suderland', 1), ('sûðar', 1), ('anexionism', 1), ('anthitesis', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 02:57:51,739 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3940000 (=100.0%) documents\n",
- "2019-06-17 02:57:54,137 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:57:54,200 : INFO : adding document #3940000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:02,908 : INFO : discarding 23647 tokens: [('halinger', 1), ('hennighaus', 1), ('lendringser', 1), ('remeins', 1), ('ziegelbrand', 1), ('countdownearly', 1), ('mzuza', 1), ('wonderbus', 1), ('gniof', 1), ('phaeornis', 1)]...\n",
- "2019-06-17 02:58:02,909 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3950000 (=100.0%) documents\n",
- "2019-06-17 02:58:05,327 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:05,391 : INFO : adding document #3950000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:14,354 : INFO : discarding 25962 tokens: [('aboutnorway', 1), ('bratville', 1), ('chategorized', 1), ('elweya', 1), ('fordefestival', 1), ('gardenwikipedia', 1), ('hallingcaster', 1), ('harpeleik', 1), ('maagerø', 1), ('musicfromnorway', 1)]...\n",
- "2019-06-17 02:58:14,355 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3960000 (=100.0%) documents\n",
- "2019-06-17 02:58:16,770 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:16,833 : INFO : adding document #3960000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:26,048 : INFO : discarding 20653 tokens: [('pseudocoix', 1), ('pseudophleum', 1), ('pseudovossia', 1), ('psilathera', 1), ('pterochloris', 1), ('reederochloa', 1), ('rendlia', 1), ('rhomboelytrum', 1), ('roxburghieae', 1), ('schaffnerella', 1)]...\n",
- "2019-06-17 02:58:26,049 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3970000 (=100.0%) documents\n",
- "2019-06-17 02:58:28,448 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:28,511 : INFO : adding document #3970000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:38,451 : INFO : discarding 23164 tokens: [('xemhango', 1), ('ælbert', 1), ('alangui', 1), ('assouplissement', 1), ('bajule', 1), ('cabraient', 1), ('enamourée', 1), ('ocellée', 1), ('pressées', 1), ('rosaces', 1)]...\n",
- "2019-06-17 02:58:38,452 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3980000 (=100.0%) documents\n",
- "2019-06-17 02:58:40,847 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:40,910 : INFO : adding document #3980000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:50,946 : INFO : discarding 24683 tokens: [('sudermanns', 1), ('liutezh', 1), ('melodicles', 1), ('plattcrossing', 1), ('stolkjaerre', 1), ('uppermidwest', 1), ('veloalacarte', 1), ('hausschein', 1), ('heussgen', 1), ('hussgen', 1)]...\n",
- "2019-06-17 02:58:50,947 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 3990000 (=100.0%) documents\n",
- "2019-06-17 02:58:53,355 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:58:53,423 : INFO : adding document #3990000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:03,925 : INFO : discarding 28669 tokens: [('良くなっている', 1), ('芋なら大鍋に', 1), ('若さいにーや', 1), ('英語を習う', 1), ('荷を運んだ', 1), ('薪を持ってきてある', 1), ('蚊が居たとさ', 1), ('行かんが', 1), ('行くと', 1), ('行ちゃん', 1)]...\n",
- "2019-06-17 02:59:03,926 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4000000 (=100.0%) documents\n",
- "2019-06-17 02:59:06,331 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:06,395 : INFO : adding document #4000000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:16,607 : INFO : discarding 26529 tokens: [('sirabi', 1), ('skembici', 1), ('tqallia', 1), ('tsitsarong', 1), ('tuslama', 1), ('yangbie', 1), ('чкембе', 1), ('牛瘪', 1), ('牛肚', 1), ('羊瘪', 1)]...\n",
- "2019-06-17 02:59:16,608 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4010000 (=100.0%) documents\n",
- "2019-06-17 02:59:18,982 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:19,047 : INFO : adding document #4010000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:27,298 : INFO : discarding 21571 tokens: [('sixact', 1), ('icarrd', 1), ('masehela', 1), ('peèar', 1), ('rahsman', 1), ('franceswhorne', 1), ('nonexpatriate', 1), ('ivteam', 1), ('mediport', 1), ('nonvesicant', 1)]...\n",
- "2019-06-17 02:59:27,299 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4020000 (=100.0%) documents\n",
- "2019-06-17 02:59:29,668 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:29,729 : INFO : adding document #4020000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:38,374 : INFO : discarding 22210 tokens: [('ajmn', 1), ('ajplus', 1), ('nowthis', 1), ('salife', 1), ('fudoshin', 1), ('sadateru', 1), ('stratobus', 1), ('atariwala', 1), ('shabajpur', 1), ('tupul', 1)]...\n",
- "2019-06-17 02:59:38,375 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4030000 (=100.0%) documents\n",
- "2019-06-17 02:59:40,772 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:40,837 : INFO : adding document #4030000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:49,820 : INFO : discarding 25955 tokens: [('gazger', 1), ('gāzgar', 1), ('gāzger', 1), ('jodegalabad', 1), ('jodegālābād', 1), ('joghranvaru', 1), ('joghrānvārū', 1), ('joghrāvārū', 1), ('jamig', 1), ('jamīg', 1)]...\n",
- "2019-06-17 02:59:49,821 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4040000 (=100.0%) documents\n",
- "2019-06-17 02:59:52,193 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 02:59:52,255 : INFO : adding document #4040000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:03,361 : INFO : discarding 29295 tokens: [('heterogender', 1), ('ewbb', 1), ('ljubliana', 1), ('multeum', 1), ('observatour', 1), ('polycentropsis', 1), ('pectations', 1), ('guangyong', 1), ('mulligar', 1), ('lizarte', 1)]...\n",
- "2019-06-17 03:00:03,362 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4050000 (=100.0%) documents\n",
- "2019-06-17 03:00:05,772 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:05,839 : INFO : adding document #4050000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:15,612 : INFO : discarding 25143 tokens: [('hodzyur', 1), ('krasnozhan', 1), ('utsiev', 1), ('affelay', 1), ('choutesiotis', 1), ('masuaku', 1), ('strezos', 1), ('pangratios', 1), ('alebrini', 1), ('thadeyn', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:00:15,613 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4060000 (=100.0%) documents\n",
- "2019-06-17 03:00:18,017 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:18,080 : INFO : adding document #4060000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:28,912 : INFO : discarding 24319 tokens: [('buddhanin', 1), ('kobam', 1), ('siripu', 1), ('yaasagan', 1), ('llanars', 1), ('trysaving', 1), ('elinam', 1), ('hardboy', 1), ('bookbed', 1), ('druiff', 1)]...\n",
- "2019-06-17 03:00:28,912 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4070000 (=100.0%) documents\n",
- "2019-06-17 03:00:31,378 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:31,449 : INFO : adding document #4070000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:42,077 : INFO : discarding 27591 tokens: [('mtun', 1), ('tucn', 1), ('giaguaro', 1), ('martinková', 1), ('sacrestano', 1), ('steni', 1), ('cronò', 1), ('gaudtvinck', 1), ('gavdtvinck', 1), ('goudtvinck', 1)]...\n",
- "2019-06-17 03:00:42,078 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4080000 (=100.0%) documents\n",
- "2019-06-17 03:00:44,506 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:44,568 : INFO : adding document #4080000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:55,907 : INFO : discarding 26705 tokens: [('kavarathi', 1), ('mohammaed', 1), ('chengfoo', 1), ('tientsen', 1), ('waihaiwei', 1), ('avadhutha', 1), ('haritayana', 1), ('kshattriya', 1), ('ramanananda', 1), ('shushupti', 1)]...\n",
- "2019-06-17 03:00:55,908 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4090000 (=100.0%) documents\n",
- "2019-06-17 03:00:58,345 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:00:58,410 : INFO : adding document #4090000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:09,112 : INFO : discarding 25387 tokens: [('rehabcare', 1), ('gavambodi', 1), ('karnatiques', 1), ('plannisolas', 1), ('glankeen', 1), ('kilcuilawn', 1), ('stankas', 1), ('stankis', 1), ('krickovič', 1), ('navijača', 1)]...\n",
- "2019-06-17 03:01:09,112 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4100000 (=100.0%) documents\n",
- "2019-06-17 03:01:11,537 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:11,599 : INFO : adding document #4100000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:22,226 : INFO : discarding 30262 tokens: [('rentlord', 1), ('seedcamp', 1), ('almerin', 1), ('laek', 1), ('siriusdecisions', 1), ('karzaz', 1), ('maribella', 1), ('cochleoceps', 1), ('gobiesocid', 1), ('felderhoff', 1)]...\n",
- "2019-06-17 03:01:22,227 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4110000 (=100.0%) documents\n",
- "2019-06-17 03:01:24,676 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:24,742 : INFO : adding document #4110000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:35,413 : INFO : discarding 31441 tokens: [('costria', 1), ('discopuncta', 1), ('okendeni', 1), ('achuth', 1), ('cheluvaraj', 1), ('hemanthkumar', 1), ('shobh', 1), ('froemberg', 1), ('hatziyakounis', 1), ('rabeder', 1)]...\n",
- "2019-06-17 03:01:35,414 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4120000 (=100.0%) documents\n",
- "2019-06-17 03:01:37,861 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:37,924 : INFO : adding document #4120000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:47,813 : INFO : discarding 26437 tokens: [('mattalia', 1), ('climonet', 1), ('bolcer', 1), ('cardkey', 1), ('enstranged', 1), ('kentakkī', 1), ('kerasine', 1), ('radinov', 1), ('cerempny', 1), ('ntimate', 1)]...\n",
- "2019-06-17 03:01:47,813 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4130000 (=100.0%) documents\n",
- "2019-06-17 03:01:50,255 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:50,320 : INFO : adding document #4130000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:01:59,694 : INFO : discarding 26165 tokens: [('amahal', 1), ('fantastiks', 1), ('herniman', 1), ('kiwiboots', 1), ('vegabond', 1), ('зоро', 1), ('мајска', 1), ('свијетла', 1), ('dichpally', 1), ('jankampet', 1)]...\n",
- "2019-06-17 03:01:59,695 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4140000 (=100.0%) documents\n",
- "2019-06-17 03:02:02,106 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:02,169 : INFO : adding document #4140000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:11,940 : INFO : discarding 26076 tokens: [('dracularegional', 1), ('foolbroadway', 1), ('sarjubala', 1), ('सरज', 1), ('horsebytes', 1), ('airtree', 1), ('arbolino', 1), ('brandcrowd', 1), ('brandstack', 1), ('designcrowd', 1)]...\n",
- "2019-06-17 03:02:11,941 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4150000 (=100.0%) documents\n",
- "2019-06-17 03:02:14,358 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:14,422 : INFO : adding document #4150000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:24,586 : INFO : discarding 27074 tokens: [('deschauensee', 1), ('ademinokan', 1), ('allahkabo', 1), ('baninla', 1), ('bonlambo', 1), ('bougfen', 1), ('dialemi', 1), ('efere', 1), ('lesizwe', 1), ('mtungi', 1)]...\n",
- "2019-06-17 03:02:24,586 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4160000 (=100.0%) documents\n",
- "2019-06-17 03:02:26,990 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:27,053 : INFO : adding document #4160000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:37,162 : INFO : discarding 26873 tokens: [('badassery', 1), ('bumpagussy', 1), ('fanbacked', 1), ('allcamarina', 1), ('chachacomayoc', 1), ('chachakuma', 1), ('giprogazcenter', 1), ('hulliburton', 1), ('innovatika', 1), ('mireco', 1)]...\n",
- "2019-06-17 03:02:37,162 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4170000 (=100.0%) documents\n",
- "2019-06-17 03:02:39,558 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:39,627 : INFO : adding document #4170000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:49,653 : INFO : discarding 31571 tokens: [('busiess', 1), ('duhoki', 1), ('mehoderet', 1), ('zilberstien', 1), ('mendee', 1), ('grosswig', 1), ('beninensis', 1), ('pflanzenfam', 1), ('pflanzenw', 1), ('raphiostyles', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:02:49,654 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4180000 (=100.0%) documents\n",
- "2019-06-17 03:02:52,056 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:02:52,120 : INFO : adding document #4180000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:02,245 : INFO : discarding 26107 tokens: [('adefesio', 1), ('bellesa', 1), ('bitó', 1), ('cdgc', 1), ('coratge', 1), ('criadas', 1), ('dispersión', 1), ('dramàtic', 1), ('golfus', 1), ('olors', 1)]...\n",
- "2019-06-17 03:03:02,246 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4190000 (=100.0%) documents\n",
- "2019-06-17 03:03:04,665 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:04,732 : INFO : adding document #4190000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:14,316 : INFO : discarding 25234 tokens: [('asteson', 1), ('ciaev', 1), ('fkss', 1), ('odrun', 1), ('enyiazu', 1), ('zadoynov', 1), ('freborg', 1), ('grupignano', 1), ('srcapped', 1), ('mikhaylenko', 1)]...\n",
- "2019-06-17 03:03:14,317 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4200000 (=100.0%) documents\n",
- "2019-06-17 03:03:16,734 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:16,796 : INFO : adding document #4200000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:26,516 : INFO : discarding 27207 tokens: [('robertgarrard', 1), ('лончар', 1), ('раде', 1), ('olomi', 1), ('crsvr', 1), ('skizzy', 1), ('wentzy', 1), ('حس', 1), ('شادي', 1), ('shafgotch', 1)]...\n",
- "2019-06-17 03:03:26,516 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4210000 (=100.0%) documents\n",
- "2019-06-17 03:03:28,944 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:29,010 : INFO : adding document #4210000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:39,004 : INFO : discarding 26667 tokens: [('animasyros', 1), ('camyar', 1), ('masnevi', 1), ('mosleh', 1), ('yangzhan', 1), ('illallah', 1), ('buliu', 1), ('taosun', 1), ('敖國珠', 1), ('敖幼祥', 1)]...\n",
- "2019-06-17 03:03:39,005 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4220000 (=100.0%) documents\n",
- "2019-06-17 03:03:41,447 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:41,510 : INFO : adding document #4220000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:52,823 : INFO : discarding 32960 tokens: [('edgepoint', 1), ('etherraptor', 1), ('fedegari', 1), ('fitsco', 1), ('mivoice', 1), ('mobbytalk', 1), ('qqsg', 1), ('qqtechnologies', 1), ('skyextender', 1), ('skygateway', 1)]...\n",
- "2019-06-17 03:03:52,824 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4230000 (=100.0%) documents\n",
- "2019-06-17 03:03:55,281 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:03:55,347 : INFO : adding document #4230000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:05,450 : INFO : discarding 34799 tokens: [('汽灯', 1), ('火烧儿', 1), ('灯路', 1), ('烧瓷', 1), ('片子', 1), ('皇历', 1), ('砍兜肚', 1), ('笔儿', 1), ('粉条子', 1), ('粉汤', 1)]...\n",
- "2019-06-17 03:04:05,451 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4240000 (=100.0%) documents\n",
- "2019-06-17 03:04:07,919 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:07,983 : INFO : adding document #4240000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:18,748 : INFO : discarding 25724 tokens: [('informatıon', 1), ('reconstructıon', 1), ('ebxi', 1), ('ghonja', 1), ('ragilia', 1), ('lopanto', 1), ('anguselaus', 1), ('lamhcalad', 1), ('llawwynnauc', 1), ('llenlleog', 1)]...\n",
- "2019-06-17 03:04:18,749 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4250000 (=100.0%) documents\n",
- "2019-06-17 03:04:21,216 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:21,282 : INFO : adding document #4250000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:31,520 : INFO : discarding 25884 tokens: [('rossokhin', 1), ('sbstr', 1), ('sycuwan', 1), ('завоевании', 1), ('калкаского', 1), ('канхием', 1), ('китайским', 1), ('кочующего', 1), ('состоящая', 1), ('татарии', 1)]...\n",
- "2019-06-17 03:04:31,521 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4260000 (=100.0%) documents\n",
- "2019-06-17 03:04:33,932 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:33,995 : INFO : adding document #4260000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:44,095 : INFO : discarding 24852 tokens: [('奇功', 1), ('奇効', 1), ('奇行', 1), ('季候', 1), ('學問', 1), ('寄港', 1), ('寄稿', 1), ('帰校', 1), ('帰港', 1), ('帰航', 1)]...\n",
- "2019-06-17 03:04:44,096 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4270000 (=100.0%) documents\n",
- "2019-06-17 03:04:46,516 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:46,581 : INFO : adding document #4270000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:57,115 : INFO : discarding 27007 tokens: [('chaudak', 1), ('chlěb', 1), ('drawänopolabian', 1), ('dâns', 1), ('dźens', 1), ('ggrêch', 1), ('giß', 1), ('gresnarem', 1), ('grêsmarim', 1), ('jaimą', 1)]...\n",
- "2019-06-17 03:04:57,116 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4280000 (=100.0%) documents\n",
- "2019-06-17 03:04:59,530 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:04:59,593 : INFO : adding document #4280000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:09,800 : INFO : discarding 26000 tokens: [('kenyanize', 1), ('eggmobiles', 1), ('polyfaces', 1), ('vartoosh', 1), ('gesetzestreuen', 1), ('klausprimator', 1), ('klausrabbiner', 1), ('ביכורי', 1), ('לנר', 1), ('עני', 1)]...\n",
- "2019-06-17 03:05:09,801 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4290000 (=100.0%) documents\n",
- "2019-06-17 03:05:12,274 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:12,341 : INFO : adding document #4290000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:22,909 : INFO : discarding 26104 tokens: [('doseulti', 1), ('finebd', 1), ('monoject', 1), ('touchprecision', 1), ('touchulticare', 1), ('σύριγγες', 1), ('inherentness', 1), ('kuritjitjuu', 1), ('reversives', 1), ('reversivity', 1)]...\n",
- "2019-06-17 03:05:22,910 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4300000 (=100.0%) documents\n",
- "2019-06-17 03:05:25,348 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:05:25,413 : INFO : adding document #4300000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:36,018 : INFO : discarding 25217 tokens: [('pelacanoididae', 1), ('vesselsome', 1), ('hugieinos', 1), ('hugieinē', 1), ('hugiēs', 1), ('multibarrier', 1), ('ὑυγίεια', 1), ('ὑυγιής', 1), ('ὑυγιεινή', 1), ('ὑυγιεινός', 1)]...\n",
- "2019-06-17 03:05:36,019 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4310000 (=100.0%) documents\n",
- "2019-06-17 03:05:38,473 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:38,539 : INFO : adding document #4310000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:48,714 : INFO : discarding 25647 tokens: [('scapia', 1), ('scarila', 1), ('sibjo', 1), ('sifila', 1), ('sigisteun', 1), ('skapjaną', 1), ('stifer', 1), ('stifterchen', 1), ('thrasamundus', 1), ('trioua', 1)]...\n",
- "2019-06-17 03:05:48,714 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4320000 (=100.0%) documents\n",
- "2019-06-17 03:05:51,204 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:05:51,267 : INFO : adding document #4320000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:01,676 : INFO : discarding 24889 tokens: [('kumbokju', 1), ('롯데칠성', 1), ('소맥', 1), ('시원', 1), ('요구르트', 1), ('잎새주', 1), ('참이슬', 1), ('폭탄주', 1), ('cadbyri', 1), ('camalat', 1)]...\n",
- "2019-06-17 03:06:01,676 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4330000 (=100.0%) documents\n",
- "2019-06-17 03:06:04,110 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:04,176 : INFO : adding document #4330000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:14,717 : INFO : discarding 28621 tokens: [('praemendesia', 1), ('buric', 1), ('copache', 1), ('duion', 1), ('foyesade', 1), ('latesta', 1), ('oluokun', 1), ('schmittgens', 1), ('vashel', 1), ('akyerefo', 1)]...\n",
- "2019-06-17 03:06:14,718 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4340000 (=100.0%) documents\n",
- "2019-06-17 03:06:17,145 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:17,209 : INFO : adding document #4340000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:27,523 : INFO : discarding 24392 tokens: [('theaterdiener', 1), ('urusew', 1), ('guroudev', 1), ('oncolors', 1), ('udann', 1), ('eskrigge', 1), ('korsts', 1), ('mediaburn', 1), ('nixonette', 1), ('sharek', 1)]...\n",
- "2019-06-17 03:06:27,523 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4350000 (=100.0%) documents\n",
- "2019-06-17 03:06:29,945 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:30,015 : INFO : adding document #4350000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:40,683 : INFO : discarding 25220 tokens: [('nawamon', 1), ('hozuma', 1), ('dził', 1), ('náʼoodiłii', 1), ('yódí', 1), ('ibandana', 1), ('mesundulata', 1), ('lettermacaward', 1), ('paranomic', 1), ('tosariero', 1)]...\n",
- "2019-06-17 03:06:40,684 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4360000 (=100.0%) documents\n",
- "2019-06-17 03:06:43,110 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:43,175 : INFO : adding document #4360000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:53,531 : INFO : discarding 23994 tokens: [('rosalench', 1), ('sospedra', 1), ('bapanapally', 1), ('bonala', 1), ('choutapally', 1), ('dameracherla', 1), ('erigela', 1), ('kommu', 1), ('mattampally', 1), ('nallabolu', 1)]...\n",
- "2019-06-17 03:06:53,531 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4370000 (=100.0%) documents\n",
- "2019-06-17 03:06:55,962 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:06:56,028 : INFO : adding document #4370000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:06,018 : INFO : discarding 28091 tokens: [('antistis', 1), ('boismen', 1), ('bougouin', 1), ('eumilius', 1), ('similini', 1), ('gomboa', 1), ('goboza', 1), ('mampasi', 1), ('palesa', 1), ('warras', 1)]...\n",
- "2019-06-17 03:07:06,019 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4380000 (=100.0%) documents\n",
- "2019-06-17 03:07:08,454 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:08,521 : INFO : adding document #4380000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:18,295 : INFO : discarding 26269 tokens: [('baladzharovym', 1), ('diatlov', 1), ('dubcova', 1), ('kokhanovsky', 1), ('krigina', 1), ('reperutare', 1), ('shavrina', 1), ('shemyakova', 1), ('евзеров', 1), ('эдуардович', 1)]...\n",
- "2019-06-17 03:07:18,295 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4390000 (=100.0%) documents\n",
- "2019-06-17 03:07:20,741 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:20,807 : INFO : adding document #4390000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:30,503 : INFO : discarding 23505 tokens: [('postanogov', 1), ('freckmann', 1), ('eggiman', 1), ('kisana', 1), ('klengdong', 1), ('kouchnir', 1), ('lazerich', 1), ('rocho', 1), ('romrell', 1), ('sinacori', 1)]...\n",
- "2019-06-17 03:07:30,504 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4400000 (=100.0%) documents\n",
- "2019-06-17 03:07:32,949 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:33,012 : INFO : adding document #4400000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:42,791 : INFO : discarding 24302 tokens: [('lamentor', 1), ('agricalture', 1), ('avigayil', 1), ('daviod', 1), ('havakook', 1), ('kuirbet', 1), ('miskenim', 1), ('mughnem', 1), ('nawaja', 1), ('plia', 1)]...\n",
- "2019-06-17 03:07:42,792 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4410000 (=100.0%) documents\n",
- "2019-06-17 03:07:45,245 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:45,311 : INFO : adding document #4410000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:55,024 : INFO : discarding 22061 tokens: [('tabbey', 1), ('tarnetta', 1), ('kıncı', 1), ('orduönü', 1), ('sarchophagus', 1), ('mallabone', 1), ('ozzi', 1), ('pirozzolo', 1), ('chacsiniché', 1), ('chacsuy', 1)]...\n",
- "2019-06-17 03:07:55,025 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4420000 (=100.0%) documents\n",
- "2019-06-17 03:07:57,465 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:07:57,527 : INFO : adding document #4420000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:08:06,992 : INFO : discarding 24770 tokens: [('tianlai', 1), ('beaurish', 1), ('shauneen', 1), ('artcastle', 1), ('adeloyeregina', 1), ('asumnucecilia', 1), ('georgefunke', 1), ('georgepatience', 1), ('kaludeborah', 1), ('odeyemi', 1)]...\n",
- "2019-06-17 03:08:06,992 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4430000 (=100.0%) documents\n",
- "2019-06-17 03:08:09,455 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:09,521 : INFO : adding document #4430000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:20,106 : INFO : discarding 25371 tokens: [('dhempe', 1), ('afrophilya', 1), ('dalmès', 1), ('devime', 1), ('philliet', 1), ('véricel', 1), ('nhôt', 1), ('antragues', 1), ('antrayegue', 1), ('antraygues', 1)]...\n",
- "2019-06-17 03:08:20,107 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4440000 (=100.0%) documents\n",
- "2019-06-17 03:08:22,556 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:22,620 : INFO : adding document #4440000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:33,435 : INFO : discarding 28089 tokens: [('noiseniks', 1), ('sexnoise', 1), ('halkevleri', 1), ('insuance', 1), ('documfest', 1), ('imagefilms', 1), ('oetkers', 1), ('zdftheaterkanal', 1), ('buzzcar', 1), ('fiercewireless', 1)]...\n",
- "2019-06-17 03:08:33,436 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4450000 (=100.0%) documents\n",
- "2019-06-17 03:08:35,908 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:35,974 : INFO : adding document #4450000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:46,172 : INFO : discarding 23012 tokens: [('gonsalensis', 1), ('pabalat', 1), ('gonsaloi', 1), ('toxtrot', 1), ('llangari', 1), ('pseudolisten', 1), ('pseudolistening', 1), ('gravenhaagsche', 1), ('mauritshaus', 1), ('sgravenhage', 1)]...\n",
- "2019-06-17 03:08:46,173 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4460000 (=100.0%) documents\n",
- "2019-06-17 03:08:48,626 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:48,690 : INFO : adding document #4460000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:08:59,157 : INFO : discarding 25599 tokens: [('nisley', 1), ('mulrane', 1), ('pakkiam', 1), ('camacúa', 1), ('veshka', 1), ('aboel', 1), ('maaden', 1), ('albummaking', 1), ('chiljip', 1), ('choiza', 1)]...\n",
- "2019-06-17 03:08:59,157 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4470000 (=100.0%) documents\n",
- "2019-06-17 03:09:01,601 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:01,668 : INFO : adding document #4470000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:12,183 : INFO : discarding 25028 tokens: [('xeob', 1), ('xerca', 1), ('xetaa', 1), ('xhtaa', 1), ('delearie', 1), ('meachums', 1), ('eisennagel', 1), ('elsammak', 1), ('xhers', 1), ('fùshǔ', 1)]...\n",
- "2019-06-17 03:09:12,184 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4480000 (=100.0%) documents\n",
- "2019-06-17 03:09:14,585 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:14,648 : INFO : adding document #4480000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:24,654 : INFO : discarding 24745 tokens: [('sivrji', 1), ('derley', 1), ('leatherarts', 1), ('stehbens', 1), ('eidolf', 1), ('smiercakova', 1), ('epuff', 1), ('xinpei', 1), ('yingmei', 1), ('两大女主角之一', 1)]...\n",
- "2019-06-17 03:09:24,655 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4490000 (=100.0%) documents\n",
- "2019-06-17 03:09:27,070 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:27,136 : INFO : adding document #4490000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:36,586 : INFO : discarding 24872 tokens: [('colafrancessco', 1), ('colafrancesso', 1), ('gelone', 1), ('murworth', 1), ('vinceslao', 1), ('bourbonitis', 1), ('bubbapalooza', 1), ('ccshow', 1), ('eplady', 1), ('epwatermelon', 1)]...\n",
- "2019-06-17 03:09:36,587 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4500000 (=100.0%) documents\n",
- "2019-06-17 03:09:38,994 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:39,059 : INFO : adding document #4500000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:48,473 : INFO : discarding 25145 tokens: [('bialkonsky', 1), ('derfling', 1), ('generalin', 1), ('grodicki', 1), ('heiratsnest', 1), ('henkstein', 1), ('rittmeisters', 1), ('sorner', 1), ('wranow', 1), ('seiford', 1)]...\n",
- "2019-06-17 03:09:48,474 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4510000 (=100.0%) documents\n",
- "2019-06-17 03:09:50,909 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:09:50,975 : INFO : adding document #4510000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:00,739 : INFO : discarding 26002 tokens: [('chroney', 1), ('footprintz', 1), ('jesglar', 1), ('brozey', 1), ('cusumba', 1), ('namsŏk', 1), ('sŏnghu', 1), ('estrapronicate', 1), ('tristeroid', 1), ('trophobolene', 1)]...\n",
- "2019-06-17 03:10:00,740 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4520000 (=100.0%) documents\n",
- "2019-06-17 03:10:03,168 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:03,232 : INFO : adding document #4520000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:13,441 : INFO : discarding 25903 tokens: [('aackerlund', 1), ('hollyanne', 1), ('burmanniidae', 1), ('cormfyt', 1), ('cormofyt', 1), ('fjälltrakter', 1), ('fylog', 1), ('färder', 1), ('lappmarks', 1), ('marattiophyta', 1)]...\n",
- "2019-06-17 03:10:13,441 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4530000 (=100.0%) documents\n",
- "2019-06-17 03:10:15,904 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:15,975 : INFO : adding document #4530000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:26,008 : INFO : discarding 24233 tokens: [('bybi', 1), ('eyhirind', 1), ('komekbaev', 1), ('taimbet', 1), ('zhosaly', 1), ('көмекбаев', 1), ('тәйімбет', 1), ('kaipi', 1), ('marstv', 1), ('midlaners', 1)]...\n",
- "2019-06-17 03:10:26,008 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4540000 (=100.0%) documents\n",
- "2019-06-17 03:10:28,435 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:28,498 : INFO : adding document #4540000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:10:37,888 : INFO : discarding 29024 tokens: [('carraignacrubog', 1), ('class_lifeboat', 1), ('ft_', 1), ('höfkens', 1), ('inishdooey', 1), ('ktjs', 1), ('melieste', 1), ('schelpwijk', 1), ('shakiri', 1), ('stowijk', 1)]...\n",
- "2019-06-17 03:10:37,889 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4550000 (=100.0%) documents\n",
- "2019-06-17 03:10:40,324 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:40,392 : INFO : adding document #4550000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:50,314 : INFO : discarding 27069 tokens: [('joatton', 1), ('lewitska', 1), ('maupéou', 1), ('paymal', 1), ('lopsland', 1), ('skäppland', 1), ('skæpper', 1), ('gadjet', 1), ('jibam', 1), ('paktomai', 1)]...\n",
- "2019-06-17 03:10:50,315 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4560000 (=100.0%) documents\n",
- "2019-06-17 03:10:52,729 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:10:52,792 : INFO : adding document #4560000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:02,904 : INFO : discarding 25602 tokens: [('chúkwú', 1), ('ghọ', 1), ('kwụ', 1), ('mkpataku', 1), ('mmuọ', 1), ('mmá', 1), ('mmúọ', 1), ('ndebunze', 1), ('nkarahia', 1), ('odinala', 1)]...\n",
- "2019-06-17 03:11:02,905 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4570000 (=100.0%) documents\n",
- "2019-06-17 03:11:05,352 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:05,417 : INFO : adding document #4570000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:15,828 : INFO : discarding 24050 tokens: [('bastesville', 1), ('sedements', 1), ('woodlum', 1), ('ccrwdd', 1), ('poluca', 1), ('stineville', 1), ('tarnceville', 1), ('uzzett', 1), ('kadohadocho', 1), ('dismandled', 1)]...\n",
- "2019-06-17 03:11:15,829 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4580000 (=100.0%) documents\n",
- "2019-06-17 03:11:18,256 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:18,320 : INFO : adding document #4580000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:27,921 : INFO : discarding 25120 tokens: [('acustically', 1), ('biī', 1), ('creativelab', 1), ('fībrīs', 1), ('gestōrum', 1), ('laxīs', 1), ('pollūtī', 1), ('possigble', 1), ('reātum', 1), ('solmisatio', 1)]...\n",
- "2019-06-17 03:11:27,922 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4590000 (=100.0%) documents\n",
- "2019-06-17 03:11:30,379 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:30,446 : INFO : adding document #4590000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:40,087 : INFO : discarding 26281 tokens: [('cayho', 1), ('khatmandhu', 1), ('cyebourne', 1), ('highfort', 1), ('cnichtebrugge', 1), ('cnihtebricge', 1), ('cnihtengild', 1), ('knichtebrig', 1), ('knightsbrigg', 1), ('knyghtesbrugg', 1)]...\n",
- "2019-06-17 03:11:40,088 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4600000 (=100.0%) documents\n",
- "2019-06-17 03:11:42,522 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:42,586 : INFO : adding document #4600000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:51,693 : INFO : discarding 21200 tokens: [('sefanitro', 1), ('sepides', 1), ('sodical', 1), ('surgiclinic', 1), ('njspbalocal', 1), ('array_keys', 1), ('auth_token', 1), ('fruit_list', 1), ('fruittype', 1), ('get_fruit', 1)]...\n",
- "2019-06-17 03:11:51,694 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4610000 (=100.0%) documents\n",
- "2019-06-17 03:11:54,129 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:11:54,200 : INFO : adding document #4610000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:03,345 : INFO : discarding 27184 tokens: [('poknis', 1), ('venanago', 1), ('norbrld', 1), ('conarton', 1), ('gassearch', 1), ('svonovec', 1), ('threshermens', 1), ('evenlink', 1), ('dutcavich', 1), ('halcovage', 1)]...\n",
- "2019-06-17 03:12:03,346 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4620000 (=100.0%) documents\n",
- "2019-06-17 03:12:05,776 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:05,840 : INFO : adding document #4620000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:15,744 : INFO : discarding 28010 tokens: [('slotsbryggeriet', 1), ('arelia', 1), ('chêche', 1), ('demembre', 1), ('fréda', 1), ('iyalorde', 1), ('mapiangue', 1), ('tsillah', 1), ('flatfood', 1), ('daome', 1)]...\n",
- "2019-06-17 03:12:15,745 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4630000 (=100.0%) documents\n",
- "2019-06-17 03:12:18,172 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:18,237 : INFO : adding document #4630000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:28,345 : INFO : discarding 29372 tokens: [('kuehu', 1), ('lahni', 1), ('salanoa', 1), ('shawlina', 1), ('citraperkasa', 1), ('gandring', 1), ('gentabuana', 1), ('halilintar', 1), ('karmapala', 1), ('kreasi', 1)]...\n",
- "2019-06-17 03:12:28,346 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4640000 (=100.0%) documents\n",
- "2019-06-17 03:12:30,775 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:30,839 : INFO : adding document #4640000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:40,243 : INFO : discarding 25882 tokens: [('sedekerskis', 1), ('cooperatsiya', 1), ('pisheviki', 1), ('братьев', 1), ('могилы', 1), ('родословной', 1), ('сборная', 1), ('старостиных', 1), ('футболу', 1), ('gewachse', 1)]...\n",
- "2019-06-17 03:12:40,244 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4650000 (=100.0%) documents\n",
- "2019-06-17 03:12:42,680 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:42,745 : INFO : adding document #4650000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:52,259 : INFO : discarding 27962 tokens: [('motalia', 1), ('saltomortal', 1), ('dictornary', 1), ('speigelberg', 1), ('teatrar', 1), ('theaterhistorie', 1), ('velthen', 1), ('velthens', 1), ('läski', 1), ('pihlajamaa', 1)]...\n",
- "2019-06-17 03:12:52,260 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4660000 (=100.0%) documents\n",
- "2019-06-17 03:12:54,667 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:12:54,730 : INFO : adding document #4660000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:03,864 : INFO : discarding 21569 tokens: [('cheruvallikkavu', 1), ('dharmashatha', 1), ('kumaranallor', 1), ('kuroor', 1), ('laxmna', 1), ('manarcad', 1), ('mookaambika', 1), ('nagampadom', 1), ('nampoothiry', 1), ('pakkil', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:13:03,865 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4670000 (=100.0%) documents\n",
- "2019-06-17 03:13:06,289 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:06,356 : INFO : adding document #4670000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:16,394 : INFO : discarding 30930 tokens: [('maikandan', 1), ('prednly', 1), ('pudupatty', 1), ('puliampatty', 1), ('pullambady', 1), ('rayapalayam', 1), ('sengapadai', 1), ('sivarakkottai', 1), ('sivarakottai', 1), ('sundravalli', 1)]...\n",
- "2019-06-17 03:13:16,395 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4680000 (=100.0%) documents\n",
- "2019-06-17 03:13:18,839 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:18,903 : INFO : adding document #4680000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:28,139 : INFO : discarding 22121 tokens: [('dunnamona', 1), ('owenacharra', 1), ('forsgrini', 1), ('kyranakou', 1), ('chemicæ', 1), ('purgantibus', 1), ('cerriere', 1), ('chupara', 1), ('espolon', 1), ('savoneeta', 1)]...\n",
- "2019-06-17 03:13:28,140 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4690000 (=100.0%) documents\n",
- "2019-06-17 03:13:30,555 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:30,622 : INFO : adding document #4690000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:39,670 : INFO : discarding 26559 tokens: [('aierbe', 1), ('auzmendi', 1), ('eizie', 1), ('etxezarreta', 1), ('inguma', 1), ('mohabeer', 1), ('rubriscoriae', 1), ('beinhaker', 1), ('optegra', 1), ('jisedaigata', 1)]...\n",
- "2019-06-17 03:13:39,671 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4700000 (=100.0%) documents\n",
- "2019-06-17 03:13:42,066 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:42,129 : INFO : adding document #4700000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:52,007 : INFO : discarding 24830 tokens: [('aarambame', 1), ('kadambadi', 1), ('kadidham', 1), ('pogudhe', 1), ('poguma', 1), ('roopy', 1), ('sandhaiyile', 1), ('sellakanne', 1), ('thenmazhai', 1), ('therinchiko', 1)]...\n",
- "2019-06-17 03:13:52,007 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4710000 (=100.0%) documents\n",
- "2019-06-17 03:13:54,437 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:13:54,502 : INFO : adding document #4710000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:04,194 : INFO : discarding 24299 tokens: [('burlingtonprice', 1), ('endbaird', 1), ('heineberg', 1), ('mallhannaford', 1), ('humanplasma', 1), ('venomm', 1), ('cannanáin', 1), ('crobhdhearg', 1), ('bryghusskriver', 1), ('enspænder', 1)]...\n",
- "2019-06-17 03:14:04,194 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4720000 (=100.0%) documents\n",
- "2019-06-17 03:14:06,648 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:06,714 : INFO : adding document #4720000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:17,349 : INFO : discarding 27504 tokens: [('husonius', 1), ('myiositta', 1), ('phoencopterus', 1), ('varcom', 1), ('snowtrooper', 1), ('barschanbu', 1), ('kernabes', 1), ('lihyani', 1), ('mahlakadeva', 1), ('bæṁkuva', 1)]...\n",
- "2019-06-17 03:14:17,350 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4730000 (=100.0%) documents\n",
- "2019-06-17 03:14:19,832 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:19,900 : INFO : adding document #4730000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:29,934 : INFO : discarding 25205 tokens: [('glader', 1), ('plarium', 1), ('aleksejevs', 1), ('avanesovs', 1), ('ikstens', 1), ('jeremejev', 1), ('lapkovskis', 1), ('matjušenko', 1), ('seņs', 1), ('smolkov', 1)]...\n",
- "2019-06-17 03:14:29,935 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4740000 (=100.0%) documents\n",
- "2019-06-17 03:14:32,404 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:32,467 : INFO : adding document #4740000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:41,632 : INFO : discarding 22408 tokens: [('bérnils', 1), ('neuwiedii', 1), ('pseudoboa', 1), ('conophis', 1), ('aktabuddin', 1), ('dairyair', 1), ('gringolandia', 1), ('nawbo', 1), ('albiazules', 1), ('marzuca', 1)]...\n",
- "2019-06-17 03:14:41,633 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4750000 (=100.0%) documents\n",
- "2019-06-17 03:14:44,073 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:44,140 : INFO : adding document #4750000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:52,826 : INFO : discarding 24557 tokens: [('pesants', 1), ('adventslieder', 1), ('adventstid', 1), ('presseverband', 1), ('antinatally', 1), ('intraplacental', 1), ('placetae', 1), ('subchorial', 1), ('subchorionic', 1), ('thrombohematoma', 1)]...\n",
- "2019-06-17 03:14:52,827 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4760000 (=100.0%) documents\n",
- "2019-06-17 03:14:55,279 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:14:55,345 : INFO : adding document #4760000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:04,913 : INFO : discarding 25166 tokens: [('constitutors', 1), ('deryabkin', 1), ('fridrikhovich', 1), ('golshtein', 1), ('kashkova', 1), ('liberaliser', 1), ('lykyanin', 1), ('pishkin', 1), ('pissiguine', 1), ('posolon', 1)]...\n",
- "2019-06-17 03:15:04,914 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4770000 (=100.0%) documents\n",
- "2019-06-17 03:15:07,420 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:07,485 : INFO : adding document #4770000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:17,435 : INFO : discarding 27269 tokens: [('betanzo', 1), ('criis', 1), ('flintkids', 1), ('divii', 1), ('drevno', 1), ('glowicki', 1), ('islamabed', 1), ('terriot', 1), ('anshanxidao', 1), ('beizhulin', 1)]...\n",
- "2019-06-17 03:15:17,436 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4780000 (=100.0%) documents\n",
- "2019-06-17 03:15:19,868 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:19,932 : INFO : adding document #4780000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:29,610 : INFO : discarding 25313 tokens: [('sensomotoric', 1), ('njrw', 1), ('dainigakushō', 1), ('dōsōsei', 1), ('engisha', 1), ('hinokiguchi', 1), ('hoiku', 1), ('ishoku', 1), ('jirochō', 1), ('junpō', 1)]...\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:15:29,611 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4790000 (=100.0%) documents\n",
- "2019-06-17 03:15:32,075 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:32,141 : INFO : adding document #4790000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:41,677 : INFO : discarding 24423 tokens: [('angō', 1), ('chubaw', 1), ('exite', 1), ('gacchiri', 1), ('hiruobi', 1), ('kisōtengai', 1), ('konkūru', 1), ('megadigi', 1), ('pittanko', 1), ('ronchards', 1)]...\n",
- "2019-06-17 03:15:41,678 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4800000 (=100.0%) documents\n",
- "2019-06-17 03:15:44,076 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:44,142 : INFO : adding document #4800000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:53,152 : INFO : discarding 26640 tokens: [('allhoff', 1), ('atheology', 1), ('三宅村', 1), ('八丈町', 1), ('利島村', 1), ('大島町', 1), ('小笠原村', 1), ('御蔵島村', 1), ('新島村', 1), ('神津島村', 1)]...\n",
- "2019-06-17 03:15:53,152 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4810000 (=100.0%) documents\n",
- "2019-06-17 03:15:55,577 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:15:55,645 : INFO : adding document #4810000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:05,349 : INFO : discarding 25741 tokens: [('emret', 1), ('komutanım', 1), ('molped', 1), ('photomodel', 1), ('yaşatacağım', 1), ('çocuklarım', 1), ('capiomont', 1), ('hypérides', 1), ('schönh', 1), ('reakit', 1)]...\n",
- "2019-06-17 03:16:05,350 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4820000 (=100.0%) documents\n",
- "2019-06-17 03:16:07,770 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:07,834 : INFO : adding document #4820000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:16,587 : INFO : discarding 22156 tokens: [('ecpl', 1), ('mininginpalawan', 1), ('pinukis', 1), ('subaanen', 1), ('anchipteraspis', 1), ('cyathaspidids', 1), ('pteraspidian', 1), ('rhachiaspis', 1), ('ulutitaspis', 1), ('abovechart', 1)]...\n",
- "2019-06-17 03:16:16,587 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4830000 (=100.0%) documents\n",
- "2019-06-17 03:16:19,003 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:19,072 : INFO : adding document #4830000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:28,291 : INFO : discarding 23808 tokens: [('pipiers', 1), ('sacavin', 1), ('dolahin', 1), ('chorgesang', 1), ('gieß', 1), ('glänzende', 1), ('interpretin', 1), ('konzertvereins', 1), ('sagerer', 1), ('anannarukarn', 1)]...\n",
- "2019-06-17 03:16:28,292 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4840000 (=100.0%) documents\n",
- "2019-06-17 03:16:30,717 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:30,781 : INFO : adding document #4840000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:40,214 : INFO : discarding 23401 tokens: [('simfonicele', 1), ('sonatensatz', 1), ('talgam', 1), ('weiermüller', 1), ('abpbh', 1), ('berlima', 1), ('fazlisham', 1), ('penampilan', 1), ('rykal', 1), ('adoració', 1)]...\n",
- "2019-06-17 03:16:40,215 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4850000 (=100.0%) documents\n",
- "2019-06-17 03:16:42,631 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:42,697 : INFO : adding document #4850000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:51,676 : INFO : discarding 24551 tokens: [('addresssed', 1), ('gormack', 1), ('dandasana', 1), ('yogapedia', 1), ('daxun', 1), ('史忠俊', 1), ('杨一怀', 1), ('殷立贤', 1), ('王信石', 1), ('王衛國', 1)]...\n",
- "2019-06-17 03:16:51,676 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4860000 (=100.0%) documents\n",
- "2019-06-17 03:16:54,109 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:16:54,174 : INFO : adding document #4860000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:03,275 : INFO : discarding 24769 tokens: [('stereoleto', 1), ('jukunen', 1), ('nashigo', 1), ('ohayōgozaimasu', 1), ('onagokai', 1), ('piramekino', 1), ('pidarar', 1), ('pitarar', 1), ('hahótis', 1), ('avanzate', 1)]...\n",
- "2019-06-17 03:17:03,276 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4870000 (=100.0%) documents\n",
- "2019-06-17 03:17:05,717 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:05,783 : INFO : adding document #4870000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:14,886 : INFO : discarding 25235 tokens: [('starportala', 1), ('prudonce', 1), ('chiontar', 1), ('felldane', 1), ('omduil', 1), ('stormshore', 1), ('gedikian', 1), ('deslignères', 1), ('hargnicourt', 1), ('possemate', 1)]...\n",
- "2019-06-17 03:17:14,886 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4880000 (=100.0%) documents\n",
- "2019-06-17 03:17:17,306 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:17,369 : INFO : adding document #4880000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:26,432 : INFO : discarding 26118 tokens: [('negationis', 1), ('unapproacable', 1), ('tachieva', 1), ('tpfbe', 1), ('epidamos', 1), ('epidemeo', 1), ('epidemios', 1), ('ganzendiep', 1), ('garste', 1), ('griftkanaal', 1)]...\n",
- "2019-06-17 03:17:26,432 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4890000 (=100.0%) documents\n",
- "2019-06-17 03:17:28,857 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:28,923 : INFO : adding document #4890000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:37,529 : INFO : discarding 27461 tokens: [('indian_admiral', 1), ('laksamanatni', 1), ('mereväeadmiral', 1), ('olkalaatta', 1), ('whtdr', 1), ('幕僚長たる海将', 1), ('张柏楠', 1), ('戚发轫', 1), ('神舟一号', 1), ('神舟七号', 1)]...\n",
- "2019-06-17 03:17:37,530 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4900000 (=100.0%) documents\n",
- "2019-06-17 03:17:39,955 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:40,022 : INFO : adding document #4900000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:48,536 : INFO : discarding 25859 tokens: [('zozó', 1), ('bunnybee', 1), ('bunnybees', 1), ('fashionality', 1), ('schlaifers', 1), ('toylands', 1), ('cancerguide', 1), ('vcams', 1), ('majsta', 1), ('lechusa', 1)]...\n",
- "2019-06-17 03:17:48,537 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4910000 (=100.0%) documents\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:17:50,967 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:51,033 : INFO : adding document #4910000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:17:59,720 : INFO : discarding 24236 tokens: [('tf_getlongp', 1), ('tf_putlongp', 1), ('diconde', 1), ('lengthinbyte', 1), ('radiantviewer', 1), ('ccaba', 1), ('cebim', 1), ('cerpie', 1), ('cremit', 1), ('epsem', 1)]...\n",
- "2019-06-17 03:17:59,721 : INFO : keeping 2000000 tokens which were in no less than 0 and no more than 4920000 (=100.0%) documents\n",
- "2019-06-17 03:18:02,226 : INFO : resulting dictionary: Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:18:02,290 : INFO : adding document #4920000 to Dictionary(2000000 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...)\n",
- "2019-06-17 03:18:05,326 : INFO : built Dictionary(2010208 unique tokens: ['abandoning', 'abandonment', 'abdelrahim', 'ability', 'able']...) from 4924894 documents (total 2423655228 corpus positions)\n",
- "2019-06-17 03:18:07,910 : INFO : discarding 1980208 tokens: [('abdelrahim', 49), ('abstention', 1064), ('abstentionism', 118), ('agitating', 867), ('also', 2640282), ('ammon', 967), ('amoureuse', 289), ('amoureux', 576), ('amparo', 1173), ('an', 2688277)]...\n",
- "2019-06-17 03:18:07,911 : INFO : keeping 30000 tokens which were in no less than 5 and no more than 2462447 (=50.0%) documents\n",
- "2019-06-17 03:18:08,388 : INFO : resulting dictionary: Dictionary(30000 unique tokens: ['abandoning', 'abandonment', 'ability', 'able', 'abolition']...)\n",
- "2019-06-17 03:18:08,550 : INFO : saving Dictionary object under wiki.dict, separately None\n",
- "2019-06-17 03:18:08,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 03:18:08,562 : INFO : saved wiki.dict\n"
- ]
- }
- ],
- "source": [
- "if os.path.exists('wiki.dict'):\n",
- " # If we already stored the Dictionary in a previous run, simply load it, to save time.\n",
- " dictionary = Dictionary.load('wiki.dict')\n",
- "else:\n",
- " dictionary = Dictionary(wikidump2tokens(data))\n",
- " # Keep only the 30,000 most frequent vocabulary terms, after filtering away terms\n",
- " # that are too frequent/too infrequent.\n",
- " dictionary.filter_extremes(no_below=5, no_above=0.5, keep_n=30000)\n",
- " dictionary.save('wiki.dict')"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Store preprocessed Wikipedia as bag-of-words sparse matrix in MatrixMarket format"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "When training NMF with a single pass over the input corpus (\"online\"), we simply vectorize each raw text straight from the input storage:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "vector_stream = (dictionary.doc2bow(article) for article in wikidump2tokens(data))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "For the purposes of this tutorial though, we'll serialize (\"cache\") the vectorized bag-of-words vectors to disk, to `wiki.mm` file in MatrixMarket format. The reason is, we'll be re-using the vectorized articles multiple times, for different models for our benchmarks, and also shuffling them, so it makes sense to amortize the vectorization time by persisting the resulting vectors to disk."
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "So, let's stream through the preprocessed sparse Wikipedia bag-of-words matrix while storing it to disk. **This step takes about 3 hours** and needs **38 GB of disk space**:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "class RandomSplitCorpus(MmCorpus):\n",
- " \"\"\"\n",
- " Use the fact that MmCorpus supports random indexing, and create a streamed\n",
- " corpus in shuffled order, including a train/test split for evaluation.\n",
- " \"\"\"\n",
- " def __init__(self, random_seed=42, testset=False, testsize=1000, *args, **kwargs):\n",
- " super().__init__(*args, **kwargs)\n",
- "\n",
- " random_state = np.random.RandomState(random_seed)\n",
- " \n",
- " self.indices = random_state.permutation(range(self.num_docs))\n",
- " test_nnz = sum(len(self[doc_idx]) for doc_idx in self.indices[:testsize])\n",
- " \n",
- " if testset:\n",
- " self.indices = self.indices[:testsize]\n",
- " self.num_docs = testsize\n",
- " self.num_nnz = test_nnz\n",
- " else:\n",
- " self.indices = self.indices[testsize:]\n",
- " self.num_docs -= testsize\n",
- " self.num_nnz -= test_nnz\n",
- "\n",
- " def __iter__(self):\n",
- " for doc_id in self.indices:\n",
- " yield self[doc_id]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "scrolled": true
- },
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 03:18:08,587 : INFO : storing corpus in Matrix Market format to wiki.mm\n",
- "2019-06-17 03:18:08,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 03:18:08,589 : INFO : saving sparse matrix to wiki.mm\n",
- "2019-06-17 03:18:08,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 03:18:08,610 : INFO : PROGRESS: saving document #0\n",
- "2019-06-17 03:24:06,380 : INFO : PROGRESS: saving document #100000\n",
- "2019-06-17 03:29:02,396 : INFO : PROGRESS: saving document #200000\n",
- "2019-06-17 03:32:47,425 : INFO : PROGRESS: saving document #300000\n",
- "2019-06-17 03:36:00,338 : INFO : PROGRESS: saving document #400000\n",
- "2019-06-17 03:38:58,186 : INFO : PROGRESS: saving document #500000\n",
- "2019-06-17 03:41:45,016 : INFO : PROGRESS: saving document #600000\n",
- "2019-06-17 03:44:17,141 : INFO : PROGRESS: saving document #700000\n",
- "2019-06-17 03:46:45,183 : INFO : PROGRESS: saving document #800000\n",
- "2019-06-17 03:49:02,584 : INFO : PROGRESS: saving document #900000\n",
- "2019-06-17 03:51:12,568 : INFO : PROGRESS: saving document #1000000\n",
- "2019-06-17 03:53:12,385 : INFO : PROGRESS: saving document #1100000\n",
- "2019-06-17 03:55:05,256 : INFO : PROGRESS: saving document #1200000\n",
- "2019-06-17 03:56:57,881 : INFO : PROGRESS: saving document #1300000\n",
- "2019-06-17 03:58:53,292 : INFO : PROGRESS: saving document #1400000\n",
- "2019-06-17 04:00:43,515 : INFO : PROGRESS: saving document #1500000\n",
- "2019-06-17 04:02:31,998 : INFO : PROGRESS: saving document #1600000\n",
- "2019-06-17 04:04:02,257 : INFO : PROGRESS: saving document #1700000\n",
- "2019-06-17 04:05:31,841 : INFO : PROGRESS: saving document #1800000\n",
- "2019-06-17 04:07:07,715 : INFO : PROGRESS: saving document #1900000\n",
- "2019-06-17 04:08:40,052 : INFO : PROGRESS: saving document #2000000\n",
- "2019-06-17 04:10:16,973 : INFO : PROGRESS: saving document #2100000\n",
- "2019-06-17 04:11:47,530 : INFO : PROGRESS: saving document #2200000\n",
- "2019-06-17 04:13:17,534 : INFO : PROGRESS: saving document #2300000\n",
- "2019-06-17 04:14:36,893 : INFO : PROGRESS: saving document #2400000\n",
- "2019-06-17 04:15:51,948 : INFO : PROGRESS: saving document #2500000\n",
- "2019-06-17 04:17:13,014 : INFO : PROGRESS: saving document #2600000\n",
- "2019-06-17 04:18:30,638 : INFO : PROGRESS: saving document #2700000\n",
- "2019-06-17 04:19:52,334 : INFO : PROGRESS: saving document #2800000\n",
- "2019-06-17 04:21:13,449 : INFO : PROGRESS: saving document #2900000\n",
- "2019-06-17 04:22:32,831 : INFO : PROGRESS: saving document #3000000\n",
- "2019-06-17 04:23:48,956 : INFO : PROGRESS: saving document #3100000\n",
- "2019-06-17 04:25:15,860 : INFO : PROGRESS: saving document #3200000\n",
- "2019-06-17 04:26:40,435 : INFO : PROGRESS: saving document #3300000\n",
- "2019-06-17 04:27:57,483 : INFO : PROGRESS: saving document #3400000\n",
- "2019-06-17 04:29:14,530 : INFO : PROGRESS: saving document #3500000\n",
- "2019-06-17 04:30:23,979 : INFO : PROGRESS: saving document #3600000\n",
- "2019-06-17 04:31:37,911 : INFO : PROGRESS: saving document #3700000\n",
- "2019-06-17 04:32:50,437 : INFO : PROGRESS: saving document #3800000\n",
- "2019-06-17 04:34:02,312 : INFO : PROGRESS: saving document #3900000\n",
- "2019-06-17 04:35:09,621 : INFO : PROGRESS: saving document #4000000\n",
- "2019-06-17 04:36:23,699 : INFO : PROGRESS: saving document #4100000\n",
- "2019-06-17 04:37:36,679 : INFO : PROGRESS: saving document #4200000\n",
- "2019-06-17 04:38:49,487 : INFO : PROGRESS: saving document #4300000\n",
- "2019-06-17 04:40:01,621 : INFO : PROGRESS: saving document #4400000\n",
- "2019-06-17 04:41:11,472 : INFO : PROGRESS: saving document #4500000\n",
- "2019-06-17 04:42:21,813 : INFO : PROGRESS: saving document #4600000\n",
- "2019-06-17 04:43:29,049 : INFO : PROGRESS: saving document #4700000\n",
- "2019-06-17 04:44:34,627 : INFO : PROGRESS: saving document #4800000\n",
- "2019-06-17 04:45:36,508 : INFO : PROGRESS: saving document #4900000\n",
- "2019-06-17 04:45:51,482 : INFO : saved 4924894x30000 matrix, density=0.555% (820242695/147746820000)\n",
- "2019-06-17 04:45:51,483 : INFO : saving MmCorpus index to wiki.mm.index\n",
- "2019-06-17 04:45:51,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 04:45:51,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 04:45:52,307 : INFO : loaded corpus index from wiki.mm.index\n",
- "2019-06-17 04:45:52,307 : INFO : initializing cython corpus reader from wiki.mm\n",
- "2019-06-17 04:45:52,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 04:45:52,309 : INFO : accepted corpus with 4924894 documents, 30000 features, 820242695 non-zero entries\n",
- "2019-06-17 04:45:52,309 : INFO : storing corpus in Matrix Market format to wiki_tfidf.mm\n",
- "2019-06-17 04:45:52,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 04:45:52,311 : INFO : saving sparse matrix to wiki_tfidf.mm\n",
- "2019-06-17 04:45:52,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 04:45:52,322 : INFO : PROGRESS: saving document #0\n",
- "2019-06-17 04:48:16,515 : INFO : PROGRESS: saving document #100000\n",
- "2019-06-17 04:50:16,174 : INFO : PROGRESS: saving document #200000\n",
- "2019-06-17 04:51:49,830 : INFO : PROGRESS: saving document #300000\n",
- "2019-06-17 04:53:14,935 : INFO : PROGRESS: saving document #400000\n",
- "2019-06-17 04:54:34,650 : INFO : PROGRESS: saving document #500000\n",
- "2019-06-17 04:55:50,116 : INFO : PROGRESS: saving document #600000\n",
- "2019-06-17 04:57:00,660 : INFO : PROGRESS: saving document #700000\n",
- "2019-06-17 04:58:07,568 : INFO : PROGRESS: saving document #800000\n",
- "2019-06-17 04:59:10,530 : INFO : PROGRESS: saving document #900000\n",
- "2019-06-17 05:00:11,153 : INFO : PROGRESS: saving document #1000000\n",
- "2019-06-17 05:01:06,495 : INFO : PROGRESS: saving document #1100000\n",
- "2019-06-17 05:01:58,164 : INFO : PROGRESS: saving document #1200000\n",
- "2019-06-17 05:02:50,223 : INFO : PROGRESS: saving document #1300000\n",
- "2019-06-17 05:03:42,030 : INFO : PROGRESS: saving document #1400000\n",
- "2019-06-17 05:04:32,081 : INFO : PROGRESS: saving document #1500000\n",
- "2019-06-17 05:05:21,184 : INFO : PROGRESS: saving document #1600000\n",
- "2019-06-17 05:06:04,286 : INFO : PROGRESS: saving document #1700000\n",
- "2019-06-17 05:06:45,417 : INFO : PROGRESS: saving document #1800000\n",
- "2019-06-17 05:07:28,911 : INFO : PROGRESS: saving document #1900000\n",
- "2019-06-17 05:08:09,016 : INFO : PROGRESS: saving document #2000000\n",
- "2019-06-17 05:08:52,132 : INFO : PROGRESS: saving document #2100000\n",
- "2019-06-17 05:09:31,792 : INFO : PROGRESS: saving document #2200000\n",
- "2019-06-17 05:10:11,427 : INFO : PROGRESS: saving document #2300000\n",
- "2019-06-17 05:10:53,208 : INFO : PROGRESS: saving document #2400000\n",
- "2019-06-17 05:11:31,014 : INFO : PROGRESS: saving document #2500000\n",
- "2019-06-17 05:12:12,445 : INFO : PROGRESS: saving document #2600000\n",
- "2019-06-17 05:12:55,802 : INFO : PROGRESS: saving document #2700000\n",
- "2019-06-17 05:13:39,715 : INFO : PROGRESS: saving document #2800000\n",
- "2019-06-17 05:14:23,227 : INFO : PROGRESS: saving document #2900000\n",
- "2019-06-17 05:15:03,920 : INFO : PROGRESS: saving document #3000000\n",
- "2019-06-17 05:15:41,584 : INFO : PROGRESS: saving document #3100000\n",
- "2019-06-17 05:16:26,873 : INFO : PROGRESS: saving document #3200000\n",
- "2019-06-17 05:17:11,139 : INFO : PROGRESS: saving document #3300000\n",
- "2019-06-17 05:17:52,175 : INFO : PROGRESS: saving document #3400000\n",
- "2019-06-17 05:18:34,059 : INFO : PROGRESS: saving document #3500000\n",
- "2019-06-17 05:19:09,548 : INFO : PROGRESS: saving document #3600000\n",
- "2019-06-17 05:19:45,978 : INFO : PROGRESS: saving document #3700000\n",
- "2019-06-17 05:20:23,639 : INFO : PROGRESS: saving document #3800000\n",
- "2019-06-17 05:21:03,069 : INFO : PROGRESS: saving document #3900000\n",
- "2019-06-17 05:21:38,646 : INFO : PROGRESS: saving document #4000000\n",
- "2019-06-17 05:22:17,047 : INFO : PROGRESS: saving document #4100000\n",
- "2019-06-17 05:22:53,121 : INFO : PROGRESS: saving document #4200000\n",
- "2019-06-17 05:23:31,097 : INFO : PROGRESS: saving document #4300000\n",
- "2019-06-17 05:24:11,367 : INFO : PROGRESS: saving document #4400000\n",
- "2019-06-17 05:24:49,653 : INFO : PROGRESS: saving document #4500000\n",
- "2019-06-17 05:25:27,381 : INFO : PROGRESS: saving document #4600000\n",
- "2019-06-17 05:26:02,146 : INFO : PROGRESS: saving document #4700000\n",
- "2019-06-17 05:26:36,857 : INFO : PROGRESS: saving document #4800000\n",
- "2019-06-17 05:27:09,937 : INFO : PROGRESS: saving document #4900000\n",
- "2019-06-17 05:27:17,648 : INFO : saved 4924894x7081 matrix, density=1.673% (583557960/34873174414)\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:17,649 : INFO : saving MmCorpus index to wiki_tfidf.mm.index\n",
- "2019-06-17 05:27:17,650 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- }
- ],
- "source": [
- "if not os.path.exists('wiki.mm'):\n",
- " MmCorpus.serialize('wiki.mm', vector_stream, progress_cnt=100000)\n",
- "\n",
- "if not os.path.exists('wiki_tfidf.mm'):\n",
- " MmCorpus.serialize('wiki_tfidf.mm', tfidf[MmCorpus('wiki.mm')], progress_cnt=100000)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:18,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:18,690 : INFO : loaded corpus index from wiki.mm.index\n",
- "2019-06-17 05:27:18,691 : INFO : initializing cython corpus reader from wiki.mm\n",
- "2019-06-17 05:27:18,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:18,692 : INFO : accepted corpus with 4924894 documents, 30000 features, 820242695 non-zero entries\n",
- "2019-06-17 05:27:20,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,814 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:20,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,888 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:20,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,954 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:20,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:20,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,039 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,116 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,200 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,287 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,372 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,448 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,531 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,600 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,675 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,755 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,835 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,909 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,979 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:21,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:21,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,051 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,113 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,179 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,251 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,320 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,394 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,453 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,541 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,617 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,702 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,774 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,843 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,923 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:22,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:22,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,009 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,077 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,156 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,237 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,312 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,394 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,460 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,544 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,616 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,686 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,748 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,824 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,884 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,973 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:23,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:23,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,058 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,132 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,213 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,276 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,345 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,419 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,494 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,564 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:24,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:24,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "IOPub message rate exceeded.\n",
- "The notebook server will temporarily stop sending output\n",
- "to the client in order to avoid crashing it.\n",
- "To change this limit, set the config variable\n",
- "`--NotebookApp.iopub_msg_rate_limit`.\n",
- "\n",
- "Current values:\n",
- "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
- "NotebookApp.rate_limit_window=3.0 (secs)\n",
- "\n",
- "2019-06-17 05:27:25,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,295 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,363 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,436 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,516 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,580 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,641 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,719 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,793 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,861 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,916 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,990 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:25,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:25,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,061 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,137 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,208 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,288 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,358 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,434 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,527 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,600 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,673 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,740 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,816 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,887 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,957 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:26,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:26,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,039 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,100 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,166 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,236 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,317 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,398 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,474 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,576 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,651 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,720 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,788 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,864 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,939 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:27,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:27,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,022 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,087 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,165 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,230 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,314 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,383 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,470 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,566 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,664 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,759 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,850 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,911 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,994 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:28,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:28,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,066 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:29,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,135 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:29,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,811 : INFO : loaded corpus index from wiki.mm.index\n",
- "2019-06-17 05:27:29,812 : INFO : initializing cython corpus reader from wiki.mm\n",
- "2019-06-17 05:27:29,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:29,813 : INFO : accepted corpus with 4924894 documents, 30000 features, 820242695 non-zero entries\n",
- "2019-06-17 05:27:31,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,773 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:31,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,823 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:31,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,885 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:31,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,946 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:31,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:31,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,019 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,076 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,130 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,201 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,260 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,358 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,420 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,489 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,557 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,612 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,673 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,740 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,791 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,855 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,929 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,994 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:32,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:32,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,065 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,142 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,195 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,258 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,339 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,394 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,446 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,547 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,615 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,679 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,777 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,842 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,906 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:33,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:33,999 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,060 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,126 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,182 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,251 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "IOPub message rate exceeded.\n",
- "The notebook server will temporarily stop sending output\n",
- "to the client in order to avoid crashing it.\n",
- "To change this limit, set the config variable\n",
- "`--NotebookApp.iopub_msg_rate_limit`.\n",
- "\n",
- "Current values:\n",
- "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
- "NotebookApp.rate_limit_window=3.0 (secs)\n",
- "\n",
- "2019-06-17 05:27:34,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,854 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,904 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,966 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:34,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:34,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,035 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,095 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,180 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,237 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,283 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,343 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,391 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,455 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,519 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,577 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,635 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,681 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,728 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,804 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,862 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,932 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:35,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:35,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,006 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,065 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,114 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,168 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,222 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,295 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,359 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,427 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,513 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,575 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,641 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,701 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,767 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,825 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,895 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,960 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:36,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:36,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,038 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,094 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,148 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,210 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,296 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,356 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,430 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,483 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,586 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,645 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,706 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,757 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,809 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,870 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,934 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:37,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:37,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,019 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,117 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,177 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,247 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,301 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,364 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,416 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,521 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,598 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,665 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,734 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,800 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,859 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,921 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,982 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:38,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:38,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,696 : INFO : loaded corpus index from wiki_tfidf.mm.index\n",
- "2019-06-17 05:27:39,697 : INFO : initializing cython corpus reader from wiki_tfidf.mm\n",
- "2019-06-17 05:27:39,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:39,698 : INFO : accepted corpus with 4924894 documents, 7081 features, 583557960 non-zero entries\n",
- "2019-06-17 05:27:41,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:41,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "IOPub message rate exceeded.\n",
- "The notebook server will temporarily stop sending output\n",
- "to the client in order to avoid crashing it.\n",
- "To change this limit, set the config variable\n",
- "`--NotebookApp.iopub_msg_rate_limit`.\n",
- "\n",
- "Current values:\n",
- "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
- "NotebookApp.rate_limit_window=3.0 (secs)\n",
- "\n",
- "2019-06-17 05:27:42,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,273 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,342 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,420 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,509 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,590 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,661 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,737 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,809 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,886 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,958 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:42,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:42,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,046 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,133 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,213 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,292 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,370 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,440 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,523 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,603 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,677 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,753 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,821 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,896 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,975 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:43,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:43,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,067 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,157 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,228 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,293 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,362 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,442 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,524 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,600 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,679 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,752 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,828 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,896 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,964 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:44,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:44,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,050 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,124 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,215 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,293 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,362 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,436 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,517 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,615 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,705 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,785 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,869 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,947 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:45,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:45,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,029 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,111 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,194 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,266 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,341 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,432 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,510 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,590 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,676 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,754 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,837 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,922 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:46,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:46,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,005 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,087 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,168 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,248 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,326 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,397 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,468 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,551 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,641 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,741 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,829 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,902 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,980 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:47,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:47,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,077 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,169 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,253 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,332 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,414 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,500 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,589 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,672 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,760 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,844 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,911 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,992 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:48,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:48,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,079 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,163 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,248 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,335 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,411 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,493 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,578 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,662 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,765 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,844 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,944 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:49,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:49,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,053 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,146 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,235 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,336 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,413 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,505 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,605 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:50,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:50,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:51,518 : INFO : loaded corpus index from wiki_tfidf.mm.index\n",
- "2019-06-17 05:27:51,519 : INFO : initializing cython corpus reader from wiki_tfidf.mm\n",
- "2019-06-17 05:27:51,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:51,521 : INFO : accepted corpus with 4924894 documents, 7081 features, 583557960 non-zero entries\n",
- "2019-06-17 05:27:53,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,438 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,509 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,571 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,625 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,690 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,752 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,817 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,885 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,960 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:53,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:53,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,033 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,108 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,181 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,235 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,289 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,378 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,461 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,542 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,601 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,657 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,715 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,777 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,841 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,928 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:54,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:54,999 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,071 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,139 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,234 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,298 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,373 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,457 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,530 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,618 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,684 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,760 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,833 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,911 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,969 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:55,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:55,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,052 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,126 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,190 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,254 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,311 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "IOPub message rate exceeded.\n",
- "The notebook server will temporarily stop sending output\n",
- "to the client in order to avoid crashing it.\n",
- "To change this limit, set the config variable\n",
- "`--NotebookApp.iopub_msg_rate_limit`.\n",
- "\n",
- "Current values:\n",
- "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
- "NotebookApp.rate_limit_window=3.0 (secs)\n",
- "\n",
- "2019-06-17 05:27:56,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,975 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:56,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:56,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,047 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,127 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,188 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,261 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,325 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,373 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,424 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,488 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,551 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,613 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,673 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,723 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,791 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,852 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,927 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:57,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:57,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,001 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,073 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,149 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,261 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,324 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,398 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,480 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,543 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,619 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,719 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,795 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,859 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,914 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,981 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:58,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:58,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,053 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,118 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,189 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,263 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,321 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,382 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,446 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,515 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,598 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,669 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,737 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,800 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,853 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,915 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,991 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:27:59,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:27:59,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,062 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,124 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,197 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,264 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,322 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,379 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,438 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,505 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,590 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,700 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,755 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,816 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,870 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,926 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,985 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:00,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:00,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,054 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,148 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,201 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- }
- ],
- "source": [
- "# Load back the vectors as two lazily-streamed train/test iterables.\n",
- "train_corpus = RandomSplitCorpus(\n",
- " random_seed=42, testset=False, testsize=10000, fname='wiki.mm',\n",
- ")\n",
- "test_corpus = RandomSplitCorpus(\n",
- " random_seed=42, testset=True, testsize=10000, fname='wiki.mm',\n",
- ")\n",
- "\n",
- "train_corpus_tfidf = RandomSplitCorpus(\n",
- " random_seed=42, testset=False, testsize=10000, fname='wiki_tfidf.mm',\n",
- ")\n",
- "test_corpus_tfidf = RandomSplitCorpus(\n",
- " random_seed=42, testset=True, testsize=10000, fname='wiki_tfidf.mm',\n",
- ")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Save preprocessed Wikipedia in scipy.sparse format"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "This is only needed to run the Sklearn NMF on Wikipedia, for comparison in the benchmarks below. Sklearn expects in-memory scipy sparse input, not on-the-fly vector streams. Needs additional ~2 GB of disk space.\n",
- "\n",
- "\n",
- "**Skip this step if you don't need the Sklearn's NMF benchmark, and only want to run Gensim's NMF.**"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,310 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,437 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,521 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,616 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,708 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,786 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,860 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,930 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:01,998 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:01,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,081 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,181 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,274 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,357 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,427 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,511 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,609 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,692 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,782 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,867 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,948 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:02,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:02,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,044 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,130 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,202 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,275 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,345 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,417 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,497 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,584 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,679 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,760 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,844 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,929 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:03,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:03,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,012 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,140 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,240 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,323 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,416 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,556 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,622 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,703 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,779 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,871 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,956 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:04,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:04,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,034 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,125 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,206 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,293 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,359 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,437 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,514 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,617 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,709 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,795 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,876 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,969 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:05,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:05,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,058 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,148 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,232 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,305 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,383 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,465 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,550 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,638 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,710 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,780 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,856 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,941 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:06,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:06,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,019 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,095 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,178 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,266 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,353 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,448 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,525 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,619 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,702 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,780 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,865 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,953 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:07,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:07,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,030 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,112 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,187 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,275 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,349 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,421 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,492 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,577 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,654 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,737 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,815 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,898 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,988 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:08,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:08,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,084 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,188 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,277 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,367 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,459 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,527 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,610 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,695 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,770 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,844 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,923 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:09,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:09,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,010 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,097 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,185 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,266 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,364 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,456 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,527 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,620 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,718 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,792 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,885 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,970 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:10,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:10,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,078 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,168 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,254 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,330 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,410 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,496 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,577 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,656 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,745 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,832 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,913 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,981 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:11,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:11,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,074 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,153 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,288 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,363 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,439 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,532 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,620 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,693 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,768 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,846 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,921 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:12,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:12,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,002 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,087 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,178 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,260 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,338 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,419 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,502 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,592 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,679 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,775 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,850 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,935 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:13,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:13,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,016 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,112 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,208 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,285 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,360 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,439 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,527 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,634 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,718 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,805 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,893 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,977 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:14,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:14,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,061 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,153 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,241 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,330 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,420 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,500 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,594 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,677 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,762 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,841 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,927 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:15,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:15,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,027 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,121 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,208 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,290 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,374 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,447 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,525 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,608 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,683 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,763 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,847 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,934 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:16,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:16,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,010 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,096 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,181 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,269 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,350 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,419 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,490 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,560 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,635 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,706 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,783 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,861 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,939 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:17,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:17,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,014 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,103 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,199 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,284 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,373 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,457 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,532 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,620 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,702 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,795 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,874 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,964 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:18,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:18,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,044 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,144 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,221 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,309 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,391 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,467 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,551 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,640 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,716 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,801 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,887 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,956 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:19,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:19,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,050 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,158 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,291 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,377 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,459 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,544 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,638 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,731 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,817 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,893 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,976 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:20,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:20,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,067 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,169 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,266 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,373 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,469 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,565 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,679 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,782 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,887 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,971 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:21,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:21,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,060 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,172 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,286 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,370 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,475 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,605 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,723 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,839 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,953 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:22,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:22,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,046 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,162 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,277 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,393 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,512 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,623 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,724 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,808 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,896 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,990 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:23,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:23,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,084 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,167 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,263 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,352 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,432 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,527 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,614 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,696 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,778 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,864 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,952 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:24,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:24,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,041 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,148 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,238 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,328 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,408 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,501 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,610 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,715 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,818 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,904 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,992 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:25,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:25,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,079 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,171 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,248 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,345 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,440 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,532 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,634 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,724 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,822 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,918 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:26,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:26,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,012 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,121 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,218 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,310 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,402 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,493 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,598 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,710 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,802 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,896 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,988 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:27,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:27,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,076 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,202 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,300 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,409 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,492 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,586 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,697 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,782 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,876 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,966 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:28,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:28,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,048 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,158 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,248 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,345 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,434 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,532 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,622 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,712 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,811 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,918 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:29,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:29,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,001 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,093 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,242 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,340 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,427 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,509 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,605 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,713 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,816 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,910 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:30,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:30,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,002 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,093 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,200 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,294 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,378 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,467 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,564 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,667 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,753 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,854 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,944 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:31,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:31,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,034 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,130 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,218 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,306 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,417 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,508 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,612 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,717 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,799 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,906 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:32,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:32,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,002 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,098 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,202 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,288 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,382 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,474 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,569 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,686 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,784 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,870 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,944 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:33,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:33,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,011 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,088 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,175 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,248 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,319 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,393 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,474 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,554 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,641 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,728 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,809 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,907 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,995 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:34,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:34,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,096 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,186 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,278 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,359 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,447 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,541 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,635 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,715 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,801 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,882 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,967 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:35,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:35,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,054 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,140 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,219 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,291 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,366 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,437 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,507 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,576 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,666 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,741 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,820 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,900 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,987 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:36,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:36,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,075 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,166 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,249 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,338 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,415 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,512 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,614 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,704 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,777 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,847 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,920 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:37,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:37,999 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,088 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,177 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,268 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,360 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,449 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,545 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,630 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,716 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,806 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,893 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,981 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:38,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:38,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,078 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,179 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,273 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,359 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,433 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,511 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,601 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,691 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,790 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,880 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,974 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:39,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:39,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,051 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,145 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,231 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,303 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,389 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,473 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,643 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,729 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,808 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,888 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,961 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:40,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:40,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,039 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,132 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,215 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,313 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,424 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,509 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,615 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,710 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,805 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,890 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,989 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:41,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:41,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,092 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,200 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,311 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,406 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,499 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,594 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,709 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,797 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,898 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:42,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:42,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,010 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,122 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,218 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,327 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,434 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,520 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,612 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,720 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,813 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,912 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,997 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:43,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:43,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,096 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,209 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,304 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,394 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,483 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,585 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,684 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,779 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,875 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,957 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:44,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:44,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,041 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,145 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,236 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,343 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,431 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,529 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,618 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,718 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,820 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,911 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:45,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:45,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,005 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,098 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,210 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,302 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,411 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,499 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,608 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,714 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,804 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,893 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,991 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:46,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:46,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,074 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,176 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,286 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,393 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,485 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,569 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,661 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,766 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,849 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,945 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:47,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:47,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,050 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,145 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,236 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,329 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,430 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,522 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,615 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,719 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,811 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,901 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:48,996 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:48,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,098 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,198 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,297 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,374 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,469 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,552 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,648 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,741 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,831 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,912 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:49,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:49,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,001 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,090 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,202 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,300 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,406 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,505 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,601 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,694 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,782 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,861 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,944 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:50,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:50,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,038 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,142 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,243 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,327 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,417 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,526 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,614 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,727 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,810 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,904 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,993 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:51,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:51,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,084 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,191 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,273 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,363 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,452 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,544 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,653 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,732 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,832 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,859 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,887 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,932 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:52,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:52,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,017 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,104 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,151 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,162 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,163 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,194 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,197 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,199 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,223 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,283 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,370 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,375 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,519 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,606 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,711 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,802 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,810 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,854 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,860 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,868 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,888 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,900 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,908 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,918 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,928 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,938 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,955 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,957 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,973 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,975 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,978 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,979 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:53,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,994 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:53,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,002 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,027 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,036 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,049 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,059 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,061 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,063 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,067 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,068 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,072 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,074 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,077 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,083 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,087 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,104 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,107 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,112 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,119 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,123 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,126 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,129 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,131 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,153 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,156 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,160 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,163 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,166 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,169 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,173 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,205 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,247 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,260 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,262 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,282 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,284 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,290 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,295 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,301 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,304 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,327 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,330 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,335 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,338 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,341 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,345 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,346 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,349 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,358 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,367 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,371 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,376 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,381 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,387 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,393 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,395 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,412 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,417 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,418 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,433 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,436 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,457 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,459 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,471 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,475 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,485 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,487 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,488 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,503 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,511 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,515 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,516 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,519 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,526 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,528 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,548 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,551 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,555 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,558 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,561 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,576 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,592 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,598 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,605 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,608 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,644 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,658 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,659 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,684 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,713 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,716 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,717 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,718 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,720 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,723 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,724 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,725 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,727 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,730 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,735 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,748 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,770 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,779 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,785 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,787 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,810 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,818 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,819 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,820 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,821 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,822 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,823 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,824 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,825 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,826 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,827 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,828 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,829 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,830 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,831 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,832 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,833 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,834 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,835 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,836 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,837 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,838 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,839 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,840 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,841 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,842 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,843 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,844 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,845 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,846 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,847 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,848 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,849 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,850 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,851 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,852 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,853 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,855 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,856 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,857 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,858 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,861 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,862 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,863 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,864 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,865 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,866 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,867 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,869 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,870 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,871 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,872 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,873 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,874 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,875 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,876 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,877 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,878 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,879 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,880 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,881 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,882 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,883 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,884 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,885 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,886 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,887 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,889 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,890 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,891 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,892 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,893 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,894 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,895 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,896 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,897 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,898 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,899 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,900 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,901 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,902 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,903 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,904 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,905 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,906 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,907 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,909 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,910 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,911 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,912 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,913 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,914 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,915 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,916 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,917 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,919 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,920 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,921 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,922 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,923 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,924 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,925 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,926 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,927 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,929 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,930 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,931 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,932 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,933 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,934 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,935 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,936 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,937 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,939 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,940 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,941 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,942 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,943 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,944 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,945 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,946 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,947 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,948 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,949 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,950 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,951 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,952 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,953 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,954 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,956 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,958 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,959 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,960 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,961 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,962 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,963 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,964 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,965 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,966 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,967 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,968 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,969 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,970 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,971 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,972 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,974 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,974 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:54,976 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,977 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,979 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,980 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,981 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,982 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,983 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,984 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,985 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,986 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,987 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,988 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,989 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,990 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,991 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,992 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,993 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,995 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,996 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,997 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,998 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:54,999 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,000 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,001 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,003 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,004 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,005 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,006 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,007 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,008 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,009 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,010 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,011 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,012 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,013 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,014 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,015 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,016 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,017 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,018 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,019 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,020 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,021 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,022 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,023 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,024 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,025 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,026 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,028 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,029 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,030 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,031 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,032 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,033 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,034 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,035 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,037 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,038 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,039 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,040 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,041 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,042 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,043 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,044 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,045 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,046 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,047 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,048 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,050 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,051 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,052 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,053 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,054 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,055 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,056 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,057 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,058 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,060 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,060 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,062 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,064 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,065 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,066 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,068 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,069 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,070 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,071 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,073 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,075 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,076 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,078 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,079 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,080 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,081 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,082 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,084 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,085 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,086 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,088 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,089 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,090 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,091 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,092 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,093 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,094 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,095 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,096 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,097 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,098 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,099 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,100 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,101 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,102 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,103 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,105 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,106 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,108 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,109 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,110 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,111 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,113 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,114 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,115 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,116 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,117 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,118 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,120 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,121 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,122 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,124 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,125 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,127 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,128 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,130 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,132 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,133 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,134 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,135 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,136 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,137 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,138 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,139 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,140 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,141 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,142 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,143 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,144 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,145 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,146 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,147 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,148 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,149 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,150 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,152 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,154 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,155 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,157 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,158 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,159 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,161 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,162 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,164 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,165 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,167 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,168 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,170 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,171 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,172 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,174 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,175 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,176 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,177 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,178 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,179 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,180 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,181 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,182 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,183 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,184 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,185 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,186 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,187 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,188 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,189 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,190 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,191 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,192 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,193 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,194 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,195 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,196 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,198 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,200 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,201 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,202 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,203 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,204 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,206 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,207 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,208 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,209 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,210 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,211 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,212 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,213 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,214 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,215 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,216 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,217 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,218 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,219 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,220 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,221 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,222 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,224 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,225 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,226 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,227 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,228 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,229 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,230 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,231 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,232 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,233 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,234 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,235 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,236 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,237 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,238 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,239 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,240 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,241 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,242 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,243 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,244 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,245 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,246 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,247 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,248 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,249 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,250 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,251 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,252 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,253 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,254 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,255 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,256 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,257 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,258 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,259 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,260 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,261 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,263 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,264 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,265 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,266 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,267 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,268 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,269 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,270 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,271 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,272 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,273 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,274 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,275 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,276 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,277 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,278 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,279 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,280 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,281 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,283 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,285 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,286 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,287 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,288 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,289 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,291 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,292 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,293 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,294 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,296 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,297 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,298 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,299 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,300 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,302 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,303 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,305 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,306 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,307 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,308 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,309 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,310 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,311 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,312 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,313 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,314 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,315 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,316 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,317 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,318 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,319 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,320 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,321 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,322 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,323 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,324 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,325 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,326 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,328 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,329 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,330 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,331 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,332 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,333 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,334 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,336 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,337 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,339 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,340 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,342 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,343 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,344 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,347 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,348 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,349 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,350 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,351 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,352 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,353 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,354 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,355 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,356 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,357 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,359 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,360 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,361 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,362 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,363 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,364 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,365 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,366 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,368 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,369 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,372 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,373 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,374 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,375 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,377 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,378 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,379 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,380 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,382 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,383 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,384 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,385 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,386 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,388 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,389 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,390 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,391 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,392 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,394 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,396 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,397 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,398 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,399 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,400 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,401 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,402 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,403 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,404 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,405 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,406 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,407 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,408 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,409 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,410 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,411 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,413 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,414 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,415 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,416 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,419 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,420 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,421 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,422 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,422 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,423 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,424 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,425 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,426 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,427 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,428 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,429 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,430 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,431 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,432 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,433 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,434 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,435 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,437 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,438 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,439 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,440 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,441 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,442 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,443 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,444 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,445 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,446 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,447 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,448 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,449 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,450 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,451 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,452 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,453 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,454 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,455 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,456 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,458 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,460 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,461 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,462 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,463 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,464 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,465 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,466 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,467 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,468 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,469 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,470 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,472 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,473 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,474 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,476 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,477 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,478 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,479 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,480 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,481 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,482 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,483 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,484 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,486 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,489 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,490 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,491 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,492 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,493 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,494 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,495 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,496 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,497 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,498 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,499 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,500 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,501 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,502 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,504 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,505 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,506 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,507 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,508 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,509 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,510 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,512 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,513 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,514 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,516 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,517 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,518 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,519 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,520 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,521 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,522 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,523 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,524 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,525 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,527 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,529 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,530 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,531 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,532 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,533 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,534 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,535 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,536 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,537 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,538 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,539 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,540 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,541 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,542 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,543 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,544 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,545 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,546 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,547 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,549 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,550 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,552 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,553 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,554 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,556 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,557 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,559 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,560 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,562 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,563 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,564 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,565 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,566 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,567 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,568 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,569 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,570 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,571 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,572 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,573 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,574 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,575 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,577 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,578 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,579 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,580 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,581 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,582 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,583 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,584 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,585 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,586 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,587 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,588 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,589 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,590 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,591 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,593 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,594 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,595 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,596 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,597 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,598 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,599 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,600 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,601 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,602 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,603 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,604 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,605 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,606 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,607 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,609 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,610 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,611 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,612 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,613 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,614 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,615 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,616 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,617 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,618 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,619 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,620 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,621 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,622 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,623 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,624 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,625 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,626 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,627 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,628 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,629 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,630 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,631 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,632 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,633 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,634 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,635 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,636 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,637 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,638 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,639 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,640 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,641 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,642 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,643 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,645 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,646 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,647 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,648 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,649 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,650 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,651 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,652 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,653 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,654 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,655 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,656 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,657 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,660 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,661 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,662 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,663 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,664 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,665 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,666 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,667 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,668 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,669 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,670 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,671 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,672 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,673 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,674 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,675 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,676 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,677 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,678 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,679 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,680 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,681 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,682 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,683 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,684 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,685 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,686 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,687 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,688 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,689 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,690 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,691 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,692 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,693 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,694 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,695 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,696 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,697 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,698 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,699 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,700 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,701 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,702 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,703 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,704 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,705 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,706 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,707 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,708 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,709 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,710 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,711 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,712 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,714 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,715 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,719 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,721 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,722 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,724 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,726 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,728 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,729 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,731 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,732 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,733 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,734 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,736 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,737 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,738 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,739 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,740 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,741 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,742 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,743 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,744 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,745 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,746 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,747 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,749 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,750 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,751 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,752 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,753 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,754 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,755 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,756 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,757 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,758 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,759 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,760 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,761 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,762 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,763 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,764 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,765 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,766 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,767 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,768 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,769 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,771 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,772 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,773 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,774 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,775 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,776 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,777 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,778 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,780 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,781 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,782 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,783 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,784 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,785 : WARNING : this function is deprecated, use smart_open.open instead\n"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "2019-06-17 05:28:55,786 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,788 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,789 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,790 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,791 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,792 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,793 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,794 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,795 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,796 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,797 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,798 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,799 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,800 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,801 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,802 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,803 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,804 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,805 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,806 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,807 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,808 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,809 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,811 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,812 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,813 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,814 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,815 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,816 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,817 : WARNING : this function is deprecated, use smart_open.open instead\n",
- "2019-06-17 05:28:55,819 : WARNING : this function is deprecated, use smart_open.open instead\n"